npm设置淘宝源 - 解决下载慢更新报错问题
由于墙外的缘故,默认的 npm
源速度比较慢,有时候根本更新不下来,可以尝试设置为淘宝源:
npm config set registry https://registry.npm.taobao.org --global
npm config set disturl https://npm.taobao.org/dist --global
如果只是想临时变更更新源,则用下面的命令:
npm --registry=https://registry.npm.taobao.org
设置完成后,可以用 npm config list
查看设置结果。如果想换回默认源,则重新设置即可:
#默认源
npm config set registry https://registry.npmjs.org
#https -> http,这样网速就会好很多
npm config set registry http://registry.npmjs.org