关于npm源
- 在国内使用这个源是不稳定的,一般用淘宝npm源: https://registry.npm.taobao.org/
在终端输入:
1 | npm config set registry https://registry.npm.taobao.org/ |
查看
1
npm config list
为方便管理和切换这些源 ,可以按照nrm nrm 是一个 npm 源管理器, 可以管理并快速地在切换NPM源
1 | npm install -g nrm |
使用nrm
- 查看: nrm ls
1 | npm -------- https://registry.npmjs.org/ |
切换
1
nrm use taobao //切换到taobao
添加新源
1 | nrm add <registry> <url> [home] |
- 删除源
1 | nrm del <registry> |