在使用 npm 过程中经常会遇到无法下载包的问题,在这里整理了几个 npm 使用国内镜像加速的方法。
原始镜像源
1
|
https://registry.npmjs.org/
|
设置淘宝镜像源
1
|
npm config set registry https://registry.npm.taobao.org
|
设置腾讯云镜像源
1
|
npm config set registry http://mirrors.cloud.tencent.com/npm/
|
设置华为云镜像源
1
|
npm config set registry https://mirrors.huaweicloud.com/repository/npm/
|
检测设置
1
|
npm config get registry
|