139

我已经下载了node.js可执行文件。如何将该可执行文件作为 Windows 服务运行?我不能使用标准的 node.js 安装程序,因为我需要同时运行多个版本的 node.js。

4

8 回答 8

221

派对迟到了,但节点窗口也可以解决问题。

在此处输入图像描述

它还内置了系统日志记录。

在此处输入图像描述

有一个 API 可以从代码创建脚本,即

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\\helloworld.js'
});

// Listen for the "install" event, which indicates the
// process is available as a service.
svc.on('install',function(){
  svc.start();
});

svc.install();

FD:我是这个模块的作者。

于 2013-09-03T04:44:08.310 回答
47

我发现这个东西非常有用,因此我围绕它构建了一个更易于使用的包装器(npmgithub)。

安装它:

npm install -g qckwinsvc

安装您的服务:

qckwinsvc

prompt: Service name: [name for your service]
prompt: Service description: [description for it]
prompt: Node script path: [path of your node script]
Service installed

卸载您的服务:

qckwinsvc --卸载

prompt: Service name: [name of your service]
prompt: Node script path: [path of your node script]
Service stopped
Service uninstalled
于 2016-02-23T08:32:51.823 回答
29

WinSer是流行的NSSM(非吸吮服务管理器)的 node.js 友好包装器

于 2012-07-13T12:40:00.463 回答
17

我不是直接解决这个问题,而是提供一种替代方案,它也可能以更 node.js 的方式满足您的要求。

从功能上讲,要求是:

  1. 让逻辑(应用程序)在后台运行
  2. 能够启动/停止逻辑
  3. 系统启动时自动启动逻辑

可以通过使用进程管理器 (PM) 并使进程管理器在系统启动时启动来满足这些要求。两个对 Windows 友好的好 PM 是:

要让 PM 自动启动,最简单的方法是使用“At Startup”触发器创建计划任务:

在此处输入图像描述

于 2015-10-29T20:48:28.447 回答
17

从这个博客

接下来,我想将节点作为服务托管,就像 IIS 一样。这样它就可以在我的机器上启动,在后台运行,如果它崩溃会自动重启等等。

这就是nssm,非吸吮服务管理器,进入图片的地方。此工具可让您将普通 .exe 作为 Windows 服务托管。

以下是我用来将节点应用程序实例设置为服务的命令,像管理员一样打开 cmd 并键入以下命令:

nssm.exe install service_name c:\your_nodejs_directory\node.exe c:\your_application_directory\server.js
net start service_name
于 2016-08-07T13:30:54.203 回答
2

https://nssm.cc/服务助手非常适合通过我从 nssm 使用的批处理文件创建 Windows 服务,并且适用于任何应用程序和任何文件

于 2021-02-13T09:14:23.437 回答
1

我一年前发布的流程管理器 + 任务调度器方法适用于一些一次性服务安装。但最近我开始以微服务的方式设计系统,许多小服务通过 IPC 相互通信。所以手动配置每个服务变得难以忍受。

为了实现无需手动配置即可安装服务的目标,我创建了serman,这是一个命令行工具(安装方式npm i -g serman),用于将可执行文件安装为服务。您只需编写一个简单的服务配置文件以及可执行文件即可(并且只需要编写一次)。跑

serman install <path_to_config_file>

将安装该服务。stdoutstderr全部记录。有关更多信息,请查看项目网站

一个工作配置文件非常简单,如下所示。但它也有许多有用的功能<env><persistent_env>如下所示。

<service>
  <id>hello</id>
  <name>hello</name>
  <description>This service runs the hello application</description>

  <executable>node.exe</executable>

  <!-- 
       {{dir}} will be expanded to the containing directory of your 
       config file, which is normally where your executable locates 
   -->
  <arguments>"{{dir}}\hello.js"</arguments>

  <logmode>rotate</logmode>

  <!-- OPTIONAL FEATURE:
       NODE_ENV=production will be an environment variable 
       available to your application, but not visible outside 
       of your application
   -->
  <env name="NODE_ENV" value="production"/>

  <!-- OPTIONAL FEATURE:
       FOO_SERVICE_PORT=8989 will be persisted as an environment
       variable machine-wide.
   -->
  <persistent_env name="FOO_SERVICE_PORT" value="8989" />
</service>
于 2016-05-24T01:03:56.510 回答
0

由于qckwinsvc有一段时间没有更新,所以有一个名为qckwinsvc2 ( npm , github )的新版本

它现在支持传递给服务的参数。它还保留一个本地缓存,因此您不必在每次要执行操作时都提供路径

安装后使用now arg 启动服务

qckwinsvc2 install name="Hello" description="Hello World" path="C:\index.js" args="--y" now
qckwinsvc2 uninstall name="Hello"
qckwinsvc2 list
于 2021-04-24T17:08:58.337 回答