npm 默认镜像 :https://registry.npmjs.org/
问题
使用 npm install 安装依赖的时候,受网络的限制,速度会很慢。
解决
使用国内镜像代理。
nrm
nrm 是镜像源管理工具;
1. 安装 nrm
npm install nrm --global
# 查看镜像源列表
nrm ls
淘宝原镜像 https://registry.npm.taobao.org 已更改为 https://registry.npmmirror.com
2. 测试当前环境下,哪个镜像源速度最快。
nrm test
3. 切换镜像源
npm config get registry # 查看当前镜像源
nrm use taobao # 等价于 npm config set registry https://registry.npmmirror.com
使用 cnpm
或 yarn
npm install -g cnpm --registry=https://registry.npmmirror.com
cnpm install -g yarn