当下载资源还隔着一堵墙的时候,速度就会让人很难受,所以要避开那堵墙--把npm更换成cnpm。国内的更换方法一般都是把node镜像源更换成淘宝的。更换方式有如下三种:
npm 指令
npm install cnpm -g --registry=https://registry.npm.taobao.org
config 指令
npm config set registry https://registry.npm.taobao.org
编辑 ~/.npmrc文件
在最后一行加入下面的内容
registry = https://registry.npm.taobao.org
无论哪种方法,能成功加速的就是好方法。
网友评论