npm切换淘宝最新镜像
我们有时候使用npm下载依赖的时候,老是卡住动不了。这个时候我们可以考虑切换成淘宝的镜像
1. 查看镜像
我们可以通过下面命令来查看当前npm的镜像地址
npm config get registry
如果显示npmjs
的,就代表是默认镜像
2. 设置镜像
#旧镜像 不推荐使用
npm config set registry https://registry.npm.taobao.org
#新的镜像地址 推荐使用
npm config set registry https://registry.npmmirror.com
换到新的镜像,是不是感觉下载速度飞快了呢
3. 还原旧镜像
如果我们想用官方的镜像,可以使用下面命令
npm config set registry https://registry.npmjs.org