在使用npm install 安装包或者git clone 一个远程仓库时,经常会遇到下载速度很慢的情况。最近自己整理了一些很好用的方法,在这里分享一下.
npm install 提速
因为国外镜像会很慢,所以可以切换成淘宝的数据源,来提速
方式1:
1 | npm config set registry https://registry.npm.taobao.org |
方式2:
1 | npm install --registry=https://registry.npm.taobao.org |
git clone 提速
其实和npm install 同理.
首先获取git 仓库地址例如:
1 | https://github.com/vuejs/vue.git |
将 github.com
换成github.com.cnpmjs.org
, 执行git clone
即可
1 | git clone https://github.com.cnpmjs.org/vuejs/vue.git |