一、使用命令直接更换(不推荐)
1.查看当前源
npm config get registry
2. 更换npm源为国内淘宝镜像
npm config set registry https://registry.npmmirror.com/
3. 还原npm源
npm config set registry https://registry.npmjs.org/
二、使用nrm管理npm源(推荐)
1.全局安装nrm
npm install nrm -g --save
2.nrm有默认配置,使用 nrm ls
查看,带 * 即为当前源地址
3.nrm切换淘宝镜像
nrm use taobao
4.测试镜像速度
nrm test taobao
5.使用nrm添加镜像地址
nrm add r_name r_url
// r_name 为镜像名字,r_url 为镜像地址
5.删除nrm镜像
nrm del r_name