npm使用总结

npm使用淘宝镜像

临时使用

1
npm --registry https://registry.npm.taobao.org

永久设置

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

该方式等同于在~/.npmrc文件中添加registry=https://registry.npm.taobao.org
可以通过npm config get registry确认是否生效

使用cnpm

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

cnpm和npm用法完全一致,只是在执行命令时将npm改为cnpm