npm换源,查看源
更换npm源:
npm config set registry https://registry.npm.taobao.org
查看当前npm源:
npm config get registry
如果想要临时使用其他源安装包,可以在安装时使用--registry
参数:
npm install package-name --registry=https://registry.npm.taobao.org
还可以使用nrm
这个工具来管理和切换npm源:
安装nrm
:
npm install -g nrm
列出所有可用的源:
nrm ls
切换到指定源:
nrm use taobao
评论已关闭