npm WARN ancient lockfile npm WARN ancient lockfile The package-lock.json file was created with an old version of npm, npm WARN ancient lockfile so supplemental metadata must be fetched from the registry. npm WARN ancient lockfile npm WARN ancient lockfile This is a one-time fix-up, please be patient... npm WARN ancient lockfile npm ERR! code ENOENT npm ERR! syscall open npm ERR! path C:\Users\86189\Desktop\exam1\springboot3cprm/package.json npm ERR! errno -4058 npm ERR! enoent ENOENT: no such file or directory, open 'C:\Users\86189\Desktop\exam1\springboot3cprm\package.json' npm ERR! enoent This is related to npm not being able to find a file. npm ERR! enoent
时间: 2023-06-08 15:07:16 浏览: 304
fix-package-lock:通过重新生成来修复package-lock.json
这是一个 npm 的警告信息,提示你的 package-lock.json 文件是用旧版的 npm 创建的,需要从注册表中获取补充元数据。这是一个一次性的修复,需要一些时间等待。同时还有一个错误信息,提示找不到对应的 package.json 文件。可能你需要检查一下你的文件目录,是否存在该文件,并且确认你使用的是最新版本的 npm。
阅读全文