npm换成cnpm的方法

安装cnpm

npm install -g cnpm

但有时安装依赖执行的是npm,如果要用到cnpm可以通过修改npm的景象地址的方式

得到原来镜像地址

npm get registry 
# https://registry.npmjs.org/

换成淘宝的

npm config set registry http://registry.npm.taobao.org/

换成npm

npm config set registry https://registry.npmjs.org/
原文地址:https://www.cnblogs.com/niujie/p/12019568.html