1.切换到淘宝镜像
加快npm包的下载速度,
//已失效
//npm config set registry https://registry.npm.taobao.org/
npm config set registry https://registry.npmmirror.com
这会将npm的注册表设置为淘宝镜像
查看:
npm config get registry
如果返回的结果是 https://registry.npmmirror.com,则表示切换淘宝镜像成功。
2.切换回官方npm注册表
切换镜像可能会有一些副作用,比如某些包可能在淘宝镜像上不存在或更新较慢,这时可随时切换回官方npm注册表
npm config set registry https://registry.npmjs.org/
查看:
npm config get registry
如果返回的结果是http://registry.npmjs.org/ ,则表示切换成官方npm注册表成功。文章来源:https://www.toymoban.com/news/detail-820347.html
参考:https://blog.csdn.net/qq_27487739/article/details/135247556文章来源地址https://www.toymoban.com/news/detail-820347.html
到了这里,关于npm官方注册表和淘宝镜像切换的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!