简介
npm 是基于 Node 的包管理系统
按指定包名更新:npm update -g
查看需要更新的包:npm outdated -g --depth=0
更新所有全局依赖包:npm update -g或者npm i -g --force
npm cache clean --force
命令 | 作用 |
---|---|
npm config set registry https://registry.npm.taobao.org | 换淘宝镜像 |
npm config get registry | 查看源 |
npm list -g --depth 0 | 查看所有全局安装的模块 |
npm install -g yarn --registry=https://registry.npm.taobao.org | 安装 yarn |
yarn config set registry https://registry.npm.taobao.org -g | yarn 换淘宝镜像 |
yarn config get registry | yarn 查看源 |
更新全局安装的包
查看需要更新的包:npm outdated -g --depth=0
按指定包名更新:npm update -g <package>
更新所有全局依赖包:npm update -g或者npm i -g <package> --force
npm 上传报错
使用npm
上传包步骤
nrm use npm
:切换到npm源npm adduser
:添加用户- 验证帐号密码
- 有些人要说删除
node_modules
目录,到底删不删目前未知 npm publish
:发布
恢复npm
源
nrm ls
:显示所有源nrm use taobao
:切回来国内镜像