web-dev-qa-db-ja.com

npmスクリプトを使用してjsファイルをどのように実行しますか?

Npmが動作しません。私のpackage.jsonファイルには

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

そして、ちょうどconsole.logsと同じフォルダーにbuild.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

そして、build.jsファイルを移動し、package.jsonファイルをサブフォルダーを持つように変更した場合

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

その後、エラーが発生します

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

何が悪いの? サンプルドキュメント をコピーしています。

59
Richard
{ "scripts" :
  { "build": "node build.js"}
}

npm run build OR npm run-script build


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

npm start


NB:{ brackets }および node コマンドがありませんでした

フォルダ構造は問題ありません:

+ build
  - package.json
  - build.js
81
Luca Filosofi

npm run-script buildまたはnpm build <project_folder>を使用する必要があります。詳細はこちら: https://docs.npmjs.com/cli/build

3
Shanoor