© 2023 Hashnode
#pm2
Introduction If you have worked with any of the frontend or backend projects, you know that you need to keep your applications alive in the background. This can be achieved through several methods like PM2,systemd, Docker, Forever, and Supe…
Node Package Manager (NPM) and Process Manager 2 (PM2) are two popular tools used in managing Node.js applications. NPM is the default package manager for Node.js, while PM2 is a process manager desig…
Deploying a Node.js application on an Ubuntu server can be a daunting task, but with the right tools, it can be done with ease. In this tutorial, we will go over how to deploy a Node.js application us…
What is Quasar Framework? Quasar framework is a Vue.js-based framework for building websites with a single codebase and you can deploy it on the web as SPA, PWA, SSR, and to Android, iOS, and Desktop …
What is PM2? pm2 is a process manager for Node.js applications. It allows you to keep your application running in the background on your server, even if you log out or close the terminal window. pm2 provides several features for managing an…
Revamp the AWS EC2 instance (Ubuntu) Install Node.js (version 10 as per the requirement of the React frontend) Reference Link: How To Install Node.js on Ubuntu 18.04 Install PM2 and yarn package manager Install CodeDeploy agent for EC2 …
What is a Process Manager? Process Manager is a special program designed to effectively manage server processes and take benefit of server resources. It's useful to keep the application online and res…