加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
service.js 471 Bytes
一键复制 编辑 原始数据 按行查看 历史
liyongyang 提交于 2024-07-03 15:17 . first commit
const nodeWindow = require("node-windows");
const path = require('path');
const Service = nodeWindow.Service;
let svc = new Service({
name: "auto-mail-mid-svc", //名称
description: "邮箱中间服务", //描述
script: path.resolve("./app.js"), //node执行入口文件
nodeOptions: ["--harmony", "--max_old_space_size=4096"],
});
svc.on("install", function () {
svc.start();
if(svc.exists){
console.log('服务安装成功')
}
});
svc.install();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化