node - 切换使用淘宝镜像
临时使用
npm --registry https://registry.npm.taobao.org install express
使用 cnpm
npm install -g cnpm - -registry=https://registry.npm.taobao.org
如:cnpm -express
长期使用
npm config set registry https://registry.npm.taobao.org
验证是否配置成功
npm config get registry
切换回原来的镜像
npm config set registry https://registry.npmjs.org/