使用了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执行文件
此时去服务管理列表里就能看到创建出来的服务了