Node.js is a popular runtime environment that allows you to run JavaScript code outside of the browser. It is widely used for building scalable and high-performance applications. PM2 is a process manager for Node.js applications that ensures uptime and helps with monitoring and management.
In this guide, we will go through the steps to install Node.js and PM2 on Ubuntu 20.04.
Before installing Node.js and PM2, update your package list to ensure you have the latest versions available:
sudo apt update && sudo apt upgrade -y
There are multiple ways to install Node.js on Ubuntu 20.04. We will use the NodeSource repository to get the latest stable version.
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
Replace 18.x
with the latest LTS version if necessary.
sudo apt install -y nodejs
node -v
npm -v
This should output the installed versions of Node.js and npm.
PM2 is a process manager that helps keep your Node.js applications running.
sudo npm install -g pm2
pm2 -v
This should return the installed version of PM2.
To demonstrate PM2, we will create a simple Node.js application and run it.
mkdir myapp && cd myapp
echo "console.log('Hello from Node.js!');" > app.js
pm2 start app.js
pm2 list
pm2 save
pm2 startup
Follow the instructions provided by the command to complete the setup.
PM2 provides various commands to manage and monitor applications:
pm2 restart app.js
pm2 stop app.js
pm2 delete app.js
pm2 logs
You have successfully installed Node.js and PM2 on Ubuntu 20.04. With PM2, you can ensure that your Node.js applications run continuously, restart automatically, and provide useful logs for debugging. This setup is ideal for production environments where uptime and stability are crucial.