2016-05-15 9 views

答えて

0

ノードスクリプトをWindowsサービスとしてインストールするモジュールは、node-windows(npm、github、documentation)と呼ばれます。私は以前に使ったことがあり、魅力のように働いた。

npm install -g qckwinsvc 

をあなたのサービスをインストールする:

> qckwinsvc 
prompt: Service name: [name for your service] 
prompt: Service description: [description for it] 
prompt: Node script path: [path of your node script] 
Service installed 

あなたのサービスをアンインストール:それをインストール

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\\helloworld.js' 
}); 

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

svc.install(); 

> qckwinsvc --uninstall 
prompt: Service name: [name of your service] 
prompt: Node script path: [path of your node script] 
Service stopped 
Service uninstalled 
関連する問題