场景:
使用淘宝源安装element-ui时npm证书过期
报错信息如下:
npm ERR! code CERT_HAS_EXPIRED
npm ERR! errno CERT_HAS_EXPIRED
npm ERR! request to https://registry.npm.taobao.org/element-ui failed, reason: certificate has expired
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\zls\AppData\Roaming\npm-cache\_logs\2024-02-01T04_32_05_422Z-debug.log
原因分析:
复制链接地址打开浏览器,接受风险,进入最终页面发现https://registry.npm.taobao.org
已经变成了 https://registry.npmmirror.com
解决方法:
方式一:换源(本人使用)
npm cache clean --force
npm config set registry https://registry.npmmirror.com
方式二:不通过ssl连接,忽略风险
npm cache clean --force
npm config set strict-ssl false
npm install element-ui
标签:npm,certificate,ERR,element,ui,registry,https From: https://www.cnblogs.com/zlshtml/p/18000979