npm i 遇到了 npm ERR! code CERT_HAS_EXPIRED

npm i 遇到了 npm ERR! code CERT_HAS_EXPIRED

  1. 更新你的系统时间【命令 date】。确保你的计算机上的时间和时区设置正确,并且与当前时间相符。
  1. 清除你的 npm 缓存。使用 npm cache clean --force 命令清除你的 npm 缓存,关闭ssl验证,并重新运行 npm i 命令。
  2. 添加 --no-optional 选项强制安装必要依赖。使用 npm i --no-optional 命令安装依赖包,忽略可选依赖项。

遇到如下错误:

javascript 复制代码
npm ERR! code CERT_HAS_EXPIRED
npm ERR! errno CERT_HAS_EXPIRED
npm ERR! request to https://registry.npm.taobao.org/xregexp/download/xregexp-2.0.0.tgz?cache=0&sync_timestamp=1581429204252&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fxregexp%2Fdownload%2Fxregexp-2.0.0.tgz failed, reason: certificate has expired

这个问题是由于 npm 试图访问 https://registry.npm.taobao.org/xregexp/download/xregexp-2.0.0.tgz 时发现 SSL 证书已经过期所致。

可尝试:

javascript 复制代码
清除缓存:清除 npm 的缓存,以确保获取最新的 SSL 证书信息:
    npm cache clean --force

1、使用其他 registry 地址:尝试使用其他 registry 地址来下载包,例如使用官方的 npm registry。
    npm config set registry https://registry.npmjs.org/

或者

2、取消ssl证书验证
npm config set strict-ssl false

遇到这个:

bash 复制代码
npm ERR! code EPERM
npm ERR! syscall open
npm ERR! path D:\Git\.npmrc
npm ERR! errno -4048
npm ERR! Error: EPERM: operation not permitted, open 'D:\Git\.npmrc'
npm ERR!  [Error: EPERM: operation not permitted, open 'D:\Git\.npmrc'] {
npm ERR!   errno: -4048,
npm ERR!   code: 'EPERM',
npm ERR!   syscall: 'open',
npm ERR!   path: 'D:\\Git\\.npmrc'
npm ERR! }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It's possible that the file was already in use (by a text editor or antivirus),
npm ERR! or that you lack permissions to access it.
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator.

需要管理员权限,以管理员身份打开即可

相关推荐
Mintopia5 分钟前
静态内容页该用HTML还是Next.js展示更好
前端·html·next.js
LYFlied12 分钟前
【每日算法】LeetCode 226. 翻转二叉树
前端·算法·leetcode·面试·职场和发展
无名无姓某罗13 分钟前
jQuery 请求 SpringMVC 接口返回404错误排查
前端·spring·jquery
霁月的小屋16 分钟前
Vue响应式数据全解析:从Vue2到Vue3,ref与reactive的实战指南
前端·javascript·vue.js
李少兄21 分钟前
深入理解 Java Web 开发中的 HttpServletRequest 与 HttpServletResponse
java·开发语言·前端
holidaypenguin23 分钟前
antd 5 + react 18 + vite 7 升级
前端·react.js
亮子AI25 分钟前
【node.js】node.js 两种模块规范 CommonJS 和 ESM 如何选择?
node.js
小满zs25 分钟前
Next.js第十五章(Image)
前端·next.js
tangbin58308525 分钟前
iOS Swift 可选值(Optional)详解
前端·ios
孟祥_成都27 分钟前
nest.js / hono.js 一起学!日志功能/统一返回格式/错误处理
前端·node.js