0%

npm 换源镜像

Node在执行npm命令时,从国外服务器下载第三方依赖包。在国内使用淘宝镜像会比较方便。

指定源:

npm install --registry=https://registry.npm.taobao.org

永久指定源:

npm config set registry https://registry.npm.taobao.org
npm config get registry

替换为cnpm:

npm install -g cnpm --registry=https://registry.npm.taobao.org 
cnpm -v

常见镜像源:

http://r.cnpmjs.org/
http://registry.npm.taobao.org/