npm之设置国内镜像
npm
的默认安装镜像是:https://registry.npmjs.org/
。下面我们来配置一下国内的镜像。
检测查看当前的镜像源:
npm config get registry
npm
配置国内镜像源:
npm config set registry https://registry.npm.taobao.org
安装cnpm
:
npm install -g cnpm --registry=https://registry.npm.taobao.org