NPM 镜像切换
本文介绍 NPM 镜像切换的方法。
可用镜像
- 官方: https://registry.npmjs.org
- 阿里云:https://registry.npmmirror.com
- 腾讯云: https://registry.npmmirror.com
- 华为云: https://registry.npmmirror.com
使用 NPM 命令切换
临时切换
1 | npm --registry https://registry.npm.taobao.org install express |
持久使用
1 | npm config set registry https://registry.npmmirror.com |
查看镜像地址
1 | npm config get registry |
使用 nrm 切换
安装 nrm
1 | npm install -g nrm |
查看可用的镜像源
1 | nrm ls |
切换镜像源
1 | nrm use taobao |
查看当前镜像源
1 | nrm current |
使用 cnpm 切换
安装 cnpm
1 | npm install -g cnpm --registry=https://registry.npmmirror.com |
查看 cnpm 可用的镜像源
1 | cnpm ls |
切换 cnpm 镜像源
cnpm config set registry https://registry.npmmirror.com