今天有个客户想npm安装依赖,一直安装不上,想着可能是国外的源不稳定,给换成国内的源.
在国内使用npm时下载速度较慢,我们可以通过更换国内镜像源来提升下载速度。以下是主要的更换方法:
常用更换方法
临时更换
npm install 包名 --registry https://registry.npmmirror.com
永久更换
npm config set registry https://registry.npmmirror.com
验证是否更换成功
npm config get registry
可用的国内镜像源
镜像源 | 地址 |
---|---|
淘宝镜像 | https://registry.npmmirror.com |
腾讯云镜像 | https://mirrors.cloud.tencent.com/npm |
华为云镜像 | https://mirrors.huaweicloud.com/repository/npm |
使用nrm管理镜像源
安装nrm
npm install -g nrm
查看可用镜像源
nrm ls
切换镜像源
nrm use taobao
特别提醒:请注意不要使用旧的淘宝镜像源(registry.npm.taobao.org),该地址已于2022年5月31日废弃。