1.全局安装淘宝镜像源 :
npm install -g cnpm registry=https://registry.npm.taobao.org
通过cnpm 指令代替 npm
2.配置一下npm的registray地址:
npm config set registry https://registry.npm.taobao.org
验证是否更改成功:
npm config get registry
会直接打印淘宝镜像的地址:https:registry.npm.taobao.org
使用npm 指令的镜像源也是淘宝镜像, 此方法不用cnpm指令
3.通过全局安装nrm :
npm install -g nrm
输出不同的镜像源:
nrm ls
切换淘宝镜像源:
nrm use taobao
网友评论