Keep your Node.js app running in the background using PM2

Get started with the basics of PM2 and learn how to run your Node.js apps in the background using Node.js process manager PM2.

PM2 is a daemon process manager that will help you manage and keep your Node.js application online 24/7. It’s a production grade process manager that let’s your node.js applications run in the background as microservices. PM2 also works in shell scripts, python and binary files.

Install PM2

Install PM2 globally using the following command. To start using PM2, you need npm and Node.js installed, of course!

Start a Node application using PM2

To start a Node.js application, just use the following command.

This command returns an id, which can be used to stop, restart or delete the app.

To give a name to your running instance, pass name using –name

You can stop, restart or delete this running node app with its name.

Stopping a Node application using pm2

Deleting a Node application using pm2

To stop all pm2 processes

To restart all pm2 processes

To reload all pm2 processes

To delete all pm2 processes

To view all pm2 processes

1 thought on “Keep your Node.js app running in the background using PM2”

Comments are closed.