什么是 nrm ?
nrm
是一个 npm
源管理器,允许你快速地在 npm
源间切换。
什么意思呢,npm
默认情况下是使用npm官方源(使用npm config ls
命令可以查看),在国内用这个源肯定是不靠谱的,一般我们都会用淘宝npm源:[https://registry.npm.taobao.org/](https://registry.npm.taobao.org/)
,修改源的方式也很简单,在终端输入:
1 | npm set registry https://registry.npm.taobao.org/ |
再npm config ls
查看,已经切换成功。
那么,问题来了,如果哪天你又跑去国外了,淘宝源肯定是用不了的,又要切换回官网源,或者哪天你们公司有自己的私有npm
源了,又需要切换成公司的源,这样岂不很麻烦?于是有了nrm
。
nrm安装
1 | npm install -g nrm |
nrm使用
查看可选源(带*号即为当前使用源)
1 | nrm ls |
nrm current
1 |
|
nrm use
1 |
|
nrm use taobao
1 |
|
nrm add
1 |
|
nrm add cpm http://192.168.22.11:8888/repository/npm-public/
1 |
|
nrm del
1 |
|
nrm del cpm
1 |
|
nrm test
1 |
|
nrm test npm
```