NodeJS 尝试运行npm安装,但我得到错误,我不知道如何修复?

v2g6jxz6  于 2023-02-08  发布在  Node.js
关注(0)|答案(2)|浏览(206)

我从以前的开发人员那里继承了一个项目,在设置和运行它时遇到了一些麻烦。我复制了文件,然后做了npm install,现在我看到了以下内容:

# npm audit report

json5  <1.0.2
Severity: high
Prototype Pollution in JSON5 via Parse Method - https://github.com/advisories/GHSA-9c47-m6qq-7p4h
fix available via `npm audit fix --force`
Will install babel-core@4.7.16, which is a breaking change
node_modules/babel-core/node_modules/json5
  babel-core  5.8.20 - 7.0.0-beta.3
  Depends on vulnerable versions of babel-register
  Depends on vulnerable versions of json5
  node_modules/babel-core
    babel-register  *
    Depends on vulnerable versions of babel-core
    node_modules/babel-register

3 high severity vulnerabilities

你知道我该怎么解决这些问题吗?

ecbunoof

ecbunoof1#

您收到这些警告是因为您使用的软件包有错误。要消除此错误,您必须将软件包升级到最新版本。

mum43rcc

mum43rcc2#

你的软件包是过时的.这就是为什么你得到这类型的错误,到更新全部软件包.尝试这命令.

npx npm-check-updates -u

相关问题