npm 审计无法使用 bash 在 Windows 上工作

npm audit not working on Windows using bash

我正在使用 Mintty 2.8.4 作为我的终端来安装 npm 包。

我安装了一个名为 moment 的 npm 包的早期版本,我收到了有关漏洞的警告。我的终端给我的建议之一是 运行 npm audit。在 运行ning 上,我的终端无法识别该命令。它会抛出其他可识别命令的列表。

谁能帮我解释一下如何在这个终端上 运行 audit

我附上了错误的详细图片和我正在使用的终端。


npm audit 刚刚在 npm 6 中引入,我看到你是 运行ning 5.6.0。

https://docs.npmjs.com/getting-started/running-a-security-audit

他们可能也在 npm 5 中提供了安全报告,但您需要 npm 6 才能 运行 审核。

升级 npm 即可解决问题。

它准确地说明了您需要做什么:

Run npm i npm@latest -g to upgrade your npm version, and then npm audit to get more info.