我希望能够在将运行script1
的项目目录中执行命令node script1.js
。
script1.js
是同一目录中的文件。该命令需要特定于项目目录,这意味着如果我向其他人发送项目文件夹,他们将能够运行相同的命令。
到目前为止,我已尝试添加:
"scripts": {
"script1": "node script1.js"
}
到我的package.json文件但是当我尝试运行script1
时,我得到以下输出:
zsh: command not found: script1
有谁知道将上述脚本添加到项目文件夹所需的步骤?
*注意:该命令无法添加到bash配置文件中(不能是特定于机器的命令)
如果您需要任何澄清,请告诉我。
答案 0 :(得分:166)
remoteItem.Id
或
npm run-script <custom_script_name>
在您的示例中,您需要运行npm run <custom_script_name>
或npm run-script script1
。
请参阅https://docs.npmjs.com/cli/run-script
Node还允许您为某些生命周期事件运行自定义脚本,例如运行npm run script1
之后。这些可以找到here。
例如:
npm install
这将在"scripts": {
"postinstall": "electron-rebuild",
},
命令后运行electron-rebuild
。
答案 1 :(得分:16)
我创建了以下内容,并且正在使用我的系统。请试试这个:
的package.json:
{
"name": "test app",
"version": "1.0.0",
"scripts": {
"start": "node script1.js"
}
}
script1.js:
console.log('testing')
从命令行运行以下命令:
npm start
其他用例
我的package.json文件通常包含以下脚本,这使我能够查看我的文件以获取打字稿,sass编译以及运行服务器。
"scripts": {
"start": "concurrently \"sass --watch ./style/sass:./style/css\" \"npm run tsc:w\" \"npm run lite\" ",
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"typings": "typings",
"postinstall": "typings install"
}
答案 2 :(得分:9)
步骤如下:
在package.json中添加:
"bin":{
"script1": "bin/script1.js"
}
在项目目录中创建一个bin
文件夹,并使用以下代码添加文件runScript1.js
:
#! /usr/bin/env node
var shell = require("shelljs");
shell.exec("node step1script.js");
在终端
npm install shelljs
在终端
npm link
从终端,您现在可以script1
运行node script1.js
参考:http://blog.npmjs.org/post/118810260230/building-a-simple-command-line-tool-with-npm
答案 3 :(得分:1)
让我们说在脚本中您要用一个命令运行2个命令:
"scripts":{
"start":"any command",
"singleCommandToRunTwoCommand":"some command here && npm start"
}
现在转到您的终端并在npm run singleCommandToRunTwoCommand
处运行。
答案 4 :(得分:1)
假设我的“ package.json”中有这行脚本
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"export_advertisements": "node export.js advertisements",
"export_homedata": "node export.js homedata",
"export_customdata": "node export.js customdata",
"export_rooms": "node export.js rooms"
},
现在运行脚本“ export_advertisements”,我将直接转到终端并输入
npm run export_advertisements
不客气??
答案 5 :(得分:0)
示例:
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --prod",
"build_c": "ng build --prod && del \"../../server/front-end/*.*\" /s /q & xcopy /s dist \"../../server/front-end\"",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
如您所见,脚本“build_c”正在构建角度应用程序,然后从目录中删除所有旧文件,最后复制结果构建文件。