文章目录
1.问题复现
npm i
一个东西报错 ,如果报错信息是下面的
shell
npm ERR! code CERT_HAS_EXPIRED
npm ERR! errno CERT_HAS_EXPIRED
npm ERR! request to https://registry.npm.taobao.org/@huolala-tech%2fpage-spy-api failed, reason: certificate has expired
2.解决方案
1.第一种
shell
#清除npm缓存
npm cache clean --force
#取消ssl证书验证
npm config set strict-ssl false
2.第二种
shell
#清除npm缓存
npm cache clean --force
#更换官方的registry
npm config set registry https://registry.npmjs.org/