本文主要是介绍error An unexpected error occurred: “https://registry.npm.taobao.org,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
背景: 想使用yarn
命令结果报错
问题原因: 原来证书到期了
http://registry.npm.taobao.org/
把这个放到浏览器搜索的时候自动换成https://registry.npmmirror.com/
方案:
npm cache clean --force
npm config set registry https://registry.npmmirror.com
最后查看npm当前镜像源 npm config get registry
npmmirror的话就没问题了
这篇关于error An unexpected error occurred: “https://registry.npm.taobao.org的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!