美文网首页NodeJs
nodejs 部署成windows服务

nodejs 部署成windows服务

作者: ChrysAwesome | 来源:发表于2017-10-10 16:24 被阅读2328次

    一般部署nodejs的项目,大家都会用到forever这个库,这个库相当好用,可以让nodejs的站点在后台跑,不需要cmd的窗口一直开着。在windows下,如果用户一直不注销,这种方式是可行的,但在服务器上的话就麻烦了,因为服务器在部署完成后,一般都会注销,那么站点就挂了。

    因此需要把它部署成windows服务,废话不多说,部署成windows服务需要几个步骤。

    1. 全局安装node-windows的库
          npm i -g node-windows
    2. 在项目中新建一个安装文件nw.js
         let Service = require('node-windows').Service;
    
         let svc = new Service({
            name: 'ele4React',    //服务名称
            description: 'ele4React', //描述
            script: 'E:/mykoa/index.js' //nodejs项目要启动的文件路径
        });
    
        svc.on('install', () => {
            svc.start();
        });
    
        svc.install();
    3. 在项目中新建一个卸载文件nw-uninstall.js
        let Service = require('node-windows').Service;
    
        let svc = new Service({
            name: 'ele4React',    //服务名称
            description: 'ele4React', //描述
            script: 'E:\mykoa\index.js' //nodejs项目要启动的文件路径
        });
    
      svc.on('uninstall',function(){
          console.log('Uninstall complete.');
          console.log('The service exists: ',svc.exists);
        });
    
      svc.uninstall();
    4. 执行命令
          node nw.js //安装服务
          node nw-uninstall //卸载服务
    

    服务安装完成


    image.png

    相关文章

      网友评论

        本文标题:nodejs 部署成windows服务

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