引导时自动启动node.js服务器

引导时自动启动node.js服务器,第1张

引导时自动启动node.js服务

根本不需要在node.js中进行配置,这完全是 *** 作系统的职责(在您的情况下为Windows)。实现此目的的最可靠方法是通过Windows服务。

有一个 超级简单的 模块,它可以将节点脚本安装为Windows服务,称为 节点窗口
(npm,github,documentation)。我以前用过并且像魅力一样工作。

var Service = require('node-windows').Service;// Create a new service objectvar 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();

ps

我发现它非常有用,以至于在它周围构建了一个更易于使用的包装器(npm,github)。

安装它:

npm install -g qckwinsvc

安装服务:

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

卸载服务:

> qckwinsvc --uninstallprompt: Service name: [name of your service]prompt: Node script path: [path of your node script]Service stoppedService uninstalled


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5126882.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存