安装cnpm
第一条从默认源头下载cnpm,第二条强制从淘宝源头下载cnpm,效果一样,任选其一
npm install -g cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
验证npm镜像源
npm config get registry
cnpm和npm区别?
cnpm其实就是在npm的基础上将镜像源更换到国内,其实以下两条命令是等效的,相信应该通过这两条命令应该可以了解到其中的区别所在
cnpm install
npm install --registry=https://registry.npm.taobao.org
原文:https://www.cnblogs.com/fly4j/p/13618844.html