yarn npm cnpm
常用命令:
功能/工具名称 | yarn | npm |
---|---|---|
安装全部依赖 | yarn / yarn install | npm install |
添加一个/多个依赖 | yarn add xx | npm install xx |
删除一个/多个依赖 | yarn remove | npm uninstall |
搜索 package 包 | / | npm search |
安装:
shell
npm install -g yarn
yarn 配置源
shell
// 查询源
yarn config get registry
// 更换国内源
yarn config set registry https://registry.npm.taobao.org/
// 恢复官方源
yarn config set registry https://registry.yarnpkg.com
// 删除注册表
yarn config delete registry
npm 配置源:
注意
npm
更换国内镜像源之后,将无法再使用npm search
命令,需要恢复为官方源才可以使用,如果恢复官方源后还不可使用,运行删除注册表命令后重试即可。
shell
// 查询源
npm config get registry
// 更换国内源
npm config set registry https://registry.npm.taobao.org/
// 恢复官方源
npm config set registry https://registry.npmjs.org
// 删除注册表
npm config delete registry
cnpm安装
shell
npm install -g cnpm --registry=https://registry.npm.taobao.org
# 检测cnpm版本,如果安装成功可以看到cnpm的基本信息
cnpm -v