参考:http://www.tuicool.com/articles/nYjqeu
参考:http://www.jianshu.com/p/0deb70e6f395
参考:http://yijiebuyi.com/blog/b12eac891cdc5f0dff127ae18dc386d4.html
概述
npm是nodejs的官方包管理工具,在上面可以下载各种第三方包,在项目中经常会使用到。但是官方的下载源在墙外,下载速度非常慢,甚至经常超时失败。所以我们需要更换一个速度更快的下载源,在国内一般选择淘宝的源。
修改源
修改源(临时)
npm --registry https://registry.npm.taobao.org install express
设置源(长期)
npm config set registry https://registry.npm.taobao.org
注:据说这种方法重启电脑后会失效,没试过
修改配置文件(长期)
vim ~/.npmrc //打开配置文件
registry =https://registry.npm.taobao.org //写入配置文件