查看当前 npm 的镜像地址
npm config get registry
更改npm镜像地址
npm config set registry https://registry.npm.taobao.org/ //设置为淘宝镜像
更新全部依赖
npm update
更新单个依赖
npm update <name>
以上命令可以通过加参数--save-dev
,--save
或-g
来指定在什么范围更新依赖。
npm config get registry
npm config set registry https://registry.npm.taobao.org/ //设置为淘宝镜像
npm update
npm update <name>
以上命令可以通过加参数--save-dev
,--save
或-g
来指定在什么范围更新依赖。