我想在 webstorm 中为 node.js 集成某种代码 linting,所以我使用以下命令将 standard 安装到我的 node.js 项目中:

npm instal standard --save-dev

它已安装并列在 package.json 的“devDependencies”部分,但是当我运行命令时:
standard

在控制台中我得到
'standard' is not recognized as an internal or external command

最佳答案

如果你想在本地使用它,你必须首先在 package.json 中将它包含在你的脚本中 "scripts": { "standard": "standard", "standard::fix": "standard --fix" }并使用 npm run standard 运行它。或者如果您使用 yarn 类型 yarn standard

关于node.js - “标准”不被识别为内部或外部命令,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46501742/

10-11 14:47