使用带有node-windows nodeJs包的参数运行脚本

时间:2018-10-23 16:15:21

标签: node.js windows-services node-windows

我要作为服务运行的脚本需要'start'作为参数。

如何使用node-windows设置参数?

这是project页上的安装js脚本:

var Service = require('node-windows').Service;

// Create a new service object
var svc = new Service({
  name:'Hello World',
  description: 'The nodejs.org example web server.',
  script: 'C:\\path\\to\\wiki.js',
  nodeOptions: [
    '--harmony',
    '--max_old_space_size=4096'
  ]
});

// Listen for the "install" event, which indicates the
// process is available as a service.
svc.on('install',function(){
  svc.start();
});

svc.install();

将脚本值设置为“ wiki start”会导致错误,因为该模块会将其视为文件。 这里的日志:

Starting C:\Program Files\nodejs\node.exe  --harmony --max_old_space_size=4096 C:\Users\<me>\AppData\Roaming\npm\node_modules\node-windows\lib\wrapper.js --file ..\wiki.js --log "wiki.js wrapper" --grow 0.25 --wait 1 --maxrestarts 3 --abortonerror n --stopparentfirst undefined "-- start"

我还尝试发送nodeOptions,在数组中添加'-start',但模块将其作为字符串添加到命令行,即“-start”。

1 个答案:

答案 0 :(得分:0)

这就是scriptOptions参数的作用。它是由node-windows@0.1.11

引入的
LED_MAIN_LINE()