NPM 镜像切换

本文介绍 NPM 镜像切换的方法。

可用镜像

使用 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