当前位置:   article > 正文

npm ERR! code CERT_HAS_EXPIRED npm ERR! errno CERT_HAS_EXPIRED npm ERR! request to https://registry.

npm err! code cert_has_expired npm err! errno cert_has_expired npm err! requ
npm install时报错code CERT_HAS_EXPIRED

一、报错情况 

  1. npm ERR! code CERT_HAS_EXPIRED
  2. npm ERR! errno CERT_HAS_EXPIRED
  3. npm ERR! request to https://registry.npm.taobao.org/vue-loader failed, reason: certificate has expired
  4. npm ERR! A complete log of this run can be found in:
  5. npm ERR! D:\Environment\nvm\node_cache\_logs\2024-01-22T04_34_51_215Z-debug.log

这就说:npm的证书失效了,它不再支持自签名证书 

二、解决方案

查看自己的下载源

npm config get registry

发现我们之前配置了下载镜像源为https开头的, 

https://registry.npm.taobao.org/

执行命令清除npm缓存 

npm cache clean --force

执行命令取消ssl验证 

npm config set strict-ssl false

 再次执行npm install ***,还不行可以尝试设置你的npm镜像源为http开头的,不使用https

npm config set registry http://registry.npm.taobao.org

最后就可以了 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/125939
推荐阅读
相关标签
  

闽ICP备14008679号