前端依赖下载速度过慢解决方法,nrm 镜像管理工具

npm 默认镜像 :https://registry.npmjs.org/

问题

使用 npm install 安装依赖的时候,受网络的限制,速度会很慢。

解决

使用国内镜像代理。

nrm

nrm 是镜像源管理工具;

1. 安装 nrm
npm install nrm --global
# 查看镜像源列表
nrm ls

前端依赖下载速度过慢解决方法,nrm 镜像管理工具_第1张图片
淘宝原镜像 https://registry.npm.taobao.org 已更改为 https://registry.npmmirror.com

2. 测试当前环境下,哪个镜像源速度最快。
nrm test

前端依赖下载速度过慢解决方法,nrm 镜像管理工具_第2张图片

3. 切换镜像源
npm config get registry # 查看当前镜像源
nrm use taobao # 等价于 npm config set registry https://registry.npmmirror.com

使用 cnpmyarn

npm install -g cnpm --registry=https://registry.npmmirror.com
cnpm install -g yarn
阿里云针对淘宝镜像更改的说明

前端依赖下载速度过慢解决方法,nrm 镜像管理工具_第3张图片
npmmirror 中国镜像站

你可能感兴趣的:(前端)