一.npm更新所有依赖最新版本
- 安装组件 npm install -g npm-check-updates
- 查看所有依赖最新版本 ncu
- 更新所有依赖到最新版本 ncu -u
二. 查看单个依赖版本
- npm info 依赖包名称 version(查看当前最新版本)
- npm info 依赖包名称 versions(查看所有版本)
- npm view 依赖包名称 version(查看当前最新版本)
- npm view 依赖包名称 versions(查看所有版本)
三. 更新单个依赖版本
- npm update axios@0.19.2 --save
- npm update axios@latest -S
四.其他
- npm config get 查看全局安装位置
-
# 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题 npm install --registry=https://registry.npmmirror.com
五.发布相关
- npm config get registry 查看npm镜像
- npm config set registry https://registry.npmjs.org 设置镜像
-
淘宝 https://registry.npm.taobao.org
npm https://registry.npmjs.org
-
- npm login 登录
- npm whoami 查看当前用户是否已登录
- npm publish 发布