问题
bash
npm ERR! code CERT_HAS_EXPIRED
npm ERR! errno CERT_HAS_EXPIRED
npm ERR! request to https://registry.npm.taobao.org/yorkie/download/yorkie-2.0.0.tgz failed, reason: certificate has expired
原因
npm 报错提示证书已过期的问题,通常是因为你使用的 npm 源(在这个案例中是淘宝的 npm 镜像 https://registry.npm.taobao.org/)的 SSL 证书已经过期或者你的系统时间设置不正确。
解决方法
-
如果问题是由淘宝 npm 镜像的证书问题引起的,你可以尝试切换到官方的 npm 源或其他可靠的源。
切换到官方 npm 源:
bash
npm config set registry https://registry.npmjs.org/
- 如果你仍然想使用淘宝的 npm 镜像,但希望临时绕过 SSL 验证(注意:这样做可能会带来安全风险,因为 SSL 用于保护数据传输的安全),你可以设置 npm 忽略 SSL 证书错误:
bash
npm config set strict-ssl false
注意:这只是一个临时解决方案,不建议长期这样做,因为它会使你的 npm 安装容易受到中间人攻击。
下载完后,恢复
bash
npm config set strict-ssl true