npm换源成淘宝镜像
- cnpm(cnpm命令行工具代替默认的npm)
#npm install -g cnpm --registry=https://registry.npm.taobao.org
检测是否安装成功
#cnpm -v
- npm(永久使用淘宝的镜像源)
直接命令行的设置
#npm config set registry https://registry.npm.taobao.org
检测是否修改成功
#npm config get registry或npm info express
还原npm仓库地址
#npm config set registry https://registry.npmjs.org/