0
PCが起動するたびにコマンドプロンプトを開き、プロジェクトディレクトリからgrunt watchを実行する方法はありますか?オートメーションを自動化しようとしているだけで、運が悪くてグーグルでグーグルですごしました。スタートアップウィンドウからざらめき時計を実行する10
PCが起動するたびにコマンドプロンプトを開き、プロジェクトディレクトリからgrunt watchを実行する方法はありますか?オートメーションを自動化しようとしているだけで、運が悪くてグーグルでグーグルですごしました。スタートアップウィンドウからざらめき時計を実行する10
ノードスクリプトを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
を