nodejs 包管理工具总结
npm
npm 设置国内源
- 临时使用指定源安装包
npm --registry https://registry.npm.taobao.org install express
- 持久配置国内源
# 设置全局
npm config set registry https://registry.npm.taobao.org
# 验证配置
npm config get registry
# 安装命令
npm install express
- 通过cnpm使用
# 安装 cnpm,cnpm 默认就是使用淘宝的地址
npm install -g cnpm --registry=https://registry.npm.taobao.org
# 使用 cnpm,cnpm 默认就是使用淘宝的地址
cnpm install express
- 恢复默认源
npm config delete registry
npx
react 的 create-react-app 命令非常慢,create-react-app 指令是默认调用 npm 的,于是直接把 npm 的 register 给永久设置过来就好了
# 查看 npm 配置
npm config get registry
# 设置国内镜像
npm config set registry https://registry.npm.taobao.org
yarn
# 安装 yarn 命令
npm install -g yarn
# 安装包
yarn add xxx
# 卸载包
yarn remove xxx
tyarn
# 安装 tyarn
npm install tyarn -g
# 使用 tyarn,和 yarn 完全兼容