如何使用 npm 脚本运行 js 文件?

2022-08-30 05:26:34

我无法让 npm 正常工作。我的 package.json 文件有

"scripts": { "build": "build.js" }

并且我在控制台日志的同一文件夹中有一个构建.js文件。

当我跑步时

npm run build

我收到错误

The system cannot execute the specified program.

npm ERR! Windows_NT 6.1.7601
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "run" "build"
npm ERR! node v4.1.1
npm ERR! npm  v3.3.5
npm ERR! code ELIFECYCLE

如果我移动构建.js文件并更改我的 package.json 文件以具有子文件夹

"scripts": { "build": "build/build.js" }

然后我得到错误

'build' is not recognized as an internal or external command, operable program or batch file.

哪里出错了?我正在复制示例文档


答案 1
{ "scripts" :
  { "build": "node build.js"}
}

npm run buildnpm run-script build


{
  "name": "build",
  "version": "1.0.0",
  "scripts": {
    "start": "node build.js"
  }
}

npm start


注意:您缺少 和 节点 命令{ brackets }

文件夹结构很好:

+ build
  - package.json
  - build.js

答案 2

应使用 或 。更多信息请点击这里:https://docs.npmjs.com/cli/buildnpm run-script buildnpm build <project_folder>