解决 npm、cnpm 或 pnpm install 遇到 certificate has expired (证书已过期)
前言
方案
更换镜像源(推荐)
npm
查询源
npm get registry
设置源
# 国内 淘宝 镜像源
npm config set registry https://registry.npmmirror.com/
# 官方镜像源
npm config set registry https://registry.npmjs.org/
关闭 SSL
验证(不推荐)
# 关闭
npm config set strict-ssl false
# 恢复
npm config set strict-ssl true
查询 config
# npm 同理
pnpm config list
email=
home=https://npmmirror.com
prefix=/usr/local
registry=https://registry.npmjs.org/
regsitry=https://registry.npmjs.org/
strict-ssl=true
user-agent=pnpm/9.1.2 npm/? node/v20.10.0 darwin x64
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 kshao-blog-前端知识记录!
评论