How do I run a node.js app as a background service?

前端 未结 26 1057
隐瞒了意图╮
隐瞒了意图╮ 2020-11-22 05:28

Since this post has gotten a lot of attention over the years, I\'ve listed the top solutions per platform at the bottom of this post.


Original post

26条回答
  •  别跟我提以往
    2020-11-22 06:02

    2016 Update: The node-windows/mac/linux series uses a common API across all operating systems, so it is absolutely a relevant solution. However; node-linux generates systemv init files. As systemd continues to grow in popularity, it is realistically a better option on Linux. PR's welcome if anyone wants to add systemd support to node-linux :-)

    Original Thread:

    This is a pretty old thread now, but node-windows provides another way to create background services on Windows. It is loosely based on the nssm concept of using an exe wrapper around your node script. However; it uses winsw.exe instead and provides a configurable node wrapper for more granular control over how the process starts/stops on failures. These processes are available like any other service:

    enter image description here

    The module also bakes in some event logging:

    enter image description here

    Daemonizing your script is accomplished through code. For example:

    var Service = require('node-windows').Service;
    
    // Create a new service object
    var svc = new Service({
      name:'Hello World',
      description: 'The nodejs.org example web server.',
      script: 'C:\\path\\to\\my\\node\\script.js'
    });
    
    // Listen for the "install" event, which indicates the
    // process is available as a service.
    svc.on('install',function(){
      svc.start();
    });
    
    // Listen for the "start" event and let us know when the
    // process has actually started working.
    svc.on('start',function(){
      console.log(svc.name+' started!\nVisit http://127.0.0.1:3000 to see it in action.');
    });
    
    // Install the script as a service.
    svc.install();
    

    The module supports things like capping restarts (so bad scripts don't hose your server) and growing time intervals between restarts.

    Since node-windows services run like any other, it is possible to manage/monitor the service with whatever software you already use.

    Finally, there are no make dependencies. In other words, a straightforward npm install -g node-windows will work. You don't need Visual Studio, .NET, or node-gyp magic to install this. Also, it's MIT and BSD licensed.

    In full disclosure, I'm the author of this module. It was designed to relieve the exact pain the OP experienced, but with tighter integration into the functionality the Operating System already provides. I hope future viewers with this same question find it useful.

提交回复
热议问题