npm更换国内源
npm是node的包管理器,在国内访问速度较慢,可以通过更换npm的源解决。
一、永久更改
使用编辑器打开
~/.npmrc
添加一行:
registry = https://registry.npm.taobao.org
重新打开terminal并键入
npm config get registry
,检查是否返回https://registry.npmjs.org/
二、临时更改
如果只想临时切换,可以通过npm install pkgName --registry https://registry.npm.taobao.org
指定npm
的仓库。
Last updated
Was this helpful?