npm加速
2017-11-16 本文已影响181人
请你吃糖
npm是nodeJS包管理工具,经常会遇到下载依赖包非常缓慢,或者是下载不了的情况,所以需要更换包的源。
淘宝npm地址:http://npm.taobao.org/
临时
npm --registry https://registry.npm.taobao.org install express
永久生效
npm config set registry https://registry.npm.taobao.org
- 验证设置是否成功
npm config get registry
# OR
npm info express
通过cnpm 使用
npm install -g --registry=https://registry.npm.taobao.org
# 使用
cnpm install install express