美文网首页
nodejs程序配置成windows-server服务,实现开机

nodejs程序配置成windows-server服务,实现开机

作者: AsaGuo | 来源:发表于2018-09-05 17:48 被阅读349次

    1. 使用模块

    node-windows
    npm官网:https://www.npmjs.com/package/node-windows
    github官网:https://github.com/coreybutler/node-windows

    2. 代码

    2.1 下载node-windows模块

    npm install node-windows --save
    

    2.2 在项目根目录创建nw.js文件

    let Service = require('node-windows').Service;
     
    let svc = new Service({
      name: 'node_test',    //服务名称
      description: '测试项目服务器', //描述
      script: 'D:/www/app.js' //nodejs项目要启动的文件路径
    });
     
    svc.on('install', () => {
      svc.start();
    });
     
    svc.install();
    

    2.3 运行

    node nw.js
    

    相关文章

      网友评论

          本文标题:nodejs程序配置成windows-server服务,实现开机

          本文链接:https://www.haomeiwen.com/subject/alqzwftx.html