首页 前端知识 npm install报错: https://registry.npm.taobao.org/: certificate has expired

npm install报错: https://registry.npm.taobao.org/: certificate has expired

2024-04-29 11:04:59 前端知识 前端哥 830 572 我要收藏

npm安装依赖时,出现报错: https://registry.npm.taobao.org/: certificate has expired,这是因为之前设置过npm使用淘宝源,而淘宝源证书过期了。

解决方法——替换新的淘宝源 https://registry.npmmirror.com/

打开终端
#查看 npm 当前设置
$ npm config get registry
#设置新的淘宝源npm镜像
$ npm config set registry https://registry.npmmirror.com
#查看设置是否成功
$ npm config get registry
如果打印出来的是 https://registry.npmmirror.com,则说明已经设置成功

同理,如果你使用的是yarn,只要换以下命令更新配置即可:

$ yarn config get registry
$ yarn config set registry https://registry.npmmirror.com
$ yarn config get registry

再次执行之前的安装依赖命令,就能成功拉取依赖包啦!

转载请注明出处或者链接地址:https://www.qianduange.cn//article/6010.html
标签
评论
发布的文章

AJAX和JSON

2024-05-03 19:05:37

qml 文件中 JSON的使用

2024-05-03 19:05:03

json在线格式化代码

2024-05-03 19:05:01

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!