How Can We Help?
< All Topics
Print

Process Managers For Node.JS

Choosing a Process Manager for NodeJS

nodejs-process-managersNode.js process manager is a tool, which provides an ability to control the application lifecycle, monitor the running services and facilitate common system admin tasks to maintain your project operability.

BitssCloud provides four pre-configured process managers by default, which can be selected in the following ways:

  • by selecting the appropriate tag during the environment creation or container redeploy

choice of process manager

  • by editing the PROCESS_MANAGER Docker environment variable in the already created container(s) with the forevernpmpm2 or supervisor value (restart is needed to apply the new options)

choice process manager via docker variables
Below, we’ll consider each of the available managers to help you select one:

  • Process Manager (npm)
  • PM2
  • Supervisor
  • Forever

Process Manager (npm)

A public process manager package is provided for Node.js server within the npm registry. It is a simple module to initiate and configure multiple processes through the spawn method, using a dedicated configuration object with the following parameters:

  • number – a number of processes to spawn, e.g. 4
  • timeout – a time (in milliseconds) for each spawn to occur
  • strategy – either series or parallel, to spawn one at a time or all together respectively
  • readyOn – signal to indicate the script is ready, either listening (by default) or ready

PM2

PM2 provides a huge variety of application management features, including the launched NodeJS processes monitoring. You can get acquainted with the list of commands for pm2, which can be executed directly via SSH.

For example, after Node.js server creation, you can list the running processes with the following command:pm2 list

As you can see it shows the default draw-game application is running. Next, you can remove this app with the pm2 delete command and deploy your own project (e.g. the default Hello Word by BitssCloud ):

pm2 delete

Also, PM2 provides users the ability to create the configuration files where all the run options are listed, which is useful for microservice-based applications deployment, as several apps can be described in a single file. The appropriate config file referencecan be found by following the provided link (e.g. the default ecosystem.config.js file is used to launch the server.js application file as the “draw game” application).

Supervisor

Supervisor is a great solution to keep your applications running. It automatically monitors any code changes in the launched .jsscripts and restarts the appropriate app to keep it up-to-date. Herewith, it allows to perform a hot restart of your NodeJS processes, ensuring they are always available and are automatically restarted in the event of a failure.

You can run the following command on your Node.js server with the supervisor process manager to get help:node-supervisor -?

supervisor
Here, you can find a short description of the module, its usage syntax, additional options descriptions and a few examples.Forever

The forever process manager is the simple CLI tool, which allows to make your NodeJS processes run continuously. It permanently keeps a child process (such as your project on the Node.js webserver) and automatically restart it upon failure.

Run the next command to get the main information on the forever manager usage, actions, usage, etc:forever –help
Also, using forever you can specify the application options in a JSON file. For example, for the default Draw game (available after Node.js server installation), this /home/BitssCloud/ROOT/forever.json file looks like:

{
   "uid": "app1",
   "append": true,
   "watch": true,
   "script": "server.js",
   "sourceDir": "/home/BitssCloud/ROOT"
}

where:

  • uid – sets unique name for your app
  • append – selects if logs should be supplemented (true) or overwritten (false)
  • watch – allows to enable or disable automatic restart of a child process upon the appropriate application code changes
  • script – defines a name of the executable .js file
  • sourceDir – provides an absolute path to the specified script
Table of Contents