赞
踩
npm config set registry https://registry.npm.taobao.org/
//这将设置npm的registry配置为淘宝镜像。
npm install -g cnpm --registry=https://registry.npm.taobao.org
如果您觉得每次都输入命令比较麻烦,也可以将这个命令添加到npm配置文件中。
npm config get registry
or
cnpm config get registry
如果终端返回的是淘宝镜像的地址,那么配置已经生效了。
需要注意的是,如果您以后需要切换回npm官方的镜像,可以使用以下命令:
npm config set registry https://registry.npmjs.org/
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。