当我们在安装某些东西的时候,终端会报错:
javascript
npm ERR! code CERT_HAS_EXPIRED
npm ERR! errno CERT_HAS_EXPIRED
npm ERR! request to https://registry.npm.taobao.org/js-md5 failed, reason: certificate has expired
npm ERR! A complete log of this run can be found in:
npm ERR!
原因
CERT_HAS_EXPIRED是一个由Node.js和npm抛出的错误,表示你正在尝试访问的服务器的SSL证书已经过期。
解决方法
清除npm缓存
npm cache clean --force
取消ssl验证:npm config set strict-ssl false
之后再npm install 你想安装的东西
再不行的话试试更换npm镜像源:
javascript
npm config set registry http://registry.cnpmjs.org
npm config set registry http://registry.npm.taobao.org
亲测有效,觉得好用留下个免费的关注吧 ~·