nodejs制作成windows服务

使用了node-windows 模块 此模块其实底层也是采用winsm.exe

本来正常不需要start.js从cmd启动服务的,但是不知道怎么按照官网文档使用不起来,所以曲线救国,调用cmd来启动了
官网地址

//全局安装模块
npm install node-windows -g
//然后再目标工程根路径
npm link node-windows

//这步不知道是否多余 安装node调用cmd窗口的模块
npm install node-cmd

在根路径创建start.js脚本

var cmd=require('node-cmd');
 cmd.run('npm run start');

在根路径创建install.js脚本

var Service = require('node-windows').Service;
 
// Create a new service object
var svc = new Service({
  name:'regexV1',
  description: 'the regexper help.',
  script: 'C:/develop/regexper-static-master/start.js'
});
 
// Listen for the "install" event, which indicates the
// process is available as a service.
svc.on('install',function(){
  svc.start();
});
 
svc.install();

创建uninstall.js脚本

var Service = require('node-windows').Service;
var svc = new Service({
  name:'regexV1',
  description: 'the regexper help.',
  script: 'C:/develop/regexper-static-master/start-app.js'
});
 
// Listen for the "install" event, which indicates the
// process is available as a service.
svc.on('install',function(){
  svc.start();
});
 
svc.uninstall();

在根路径打开cmd窗口 执行

node install.js 

会在根目录生成daemon文件夹 里面有日志和配置 和一个exe执行文件

此时去服务管理列表里就能看到创建出来的服务了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值