PM2
Node.js Production Process Manager with a built-in Load Balancer. (by Unitech)
Phusion Passenger
A fast and robust web server and application server for Ruby, Python and Node.js (by phusion)
PM2 | Phusion Passenger | |
---|---|---|
68 | 10 | |
42,118 | 5,028 | |
0.4% | 0.1% | |
7.7 | 9.5 | |
about 1 month ago | 9 days ago | |
JavaScript | C++ | |
GNU General Public License v3.0 or later | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
PM2
Posts with mentions or reviews of PM2.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-11-27.
-
Guia de Comandos PM2
GitHub: PM2 Repository
-
Deploying a React Watchlist Tracker App to Production Using DeployHQ
You can run the command pm2 status to check if both servers are online and running, as shown below. To learn about all of the other PM2 commands, read the documentation on PM2 Process Management Quick Start:
-
Why We Chose NGINX + HashiStack Over Kubernetes for Our Service Discovery Needs
For teams using NGINX+PM2, moving to NGINX + HashiStack is a more robust and flexible solution—a great fit for startups looking for scalability without the complexity of Kubernetes.
-
Practical Guide to Set Up Multiple NodeJS Apps on AWS EC2 Instance with Automatic Deployment using GitHub Actions (Screenshots)
PM2 Documentation - https://www.npmjs.com/package/pm2
- Stripe's Monorepo Developer Environment
-
Faster, Easier Deployments: How We Simplified Our Infrastructure with Nomad in 15 Hours (Goodbye, Kubernetes!)
What we wanted was something like a supercharged pm2, but multi-node with good support for both docker and binaries.
-
6 Repositories To Master Node.js
6. PM2
-
Understanding Nginx: From Simple Concepts to Technical Details and Deploying securely with PM2 and Certbot
More pm2 commands here
-
Node.js PM2 Explained
Start by registering the app using the official guide.
-
Deploy Node.js applications on a VPS using Coolify
Run the application using PM2 (ref: Process manager for Node.js)
Phusion Passenger
Posts with mentions or reviews of Phusion Passenger.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-08-26.
-
story of upgrading rails 5.x to 7.x
We split the staging server into two instances using Ubuntu 22.04 as the base image. The first instance is for a web server with nginx, passenger and MySQL. The second instance is for the support server and this is where we install redis, memcache, mongodb and resque.
-
Has something changed in Passenger with the new version?
Secondly, there is, of course, a bug with Passenger and /var/run/passenger-instreg (I can be found in that thread whining). My preferred fix for this is
-
Part 3 — Adding Git, Passenger and Nginx
While there is a debate on which ones are the best, we will be using Passenger and Nginx, since they are both fast and reliable. You may wish to do your own research and see which one works for you.
-
How To Deploy a Rails App With Passenger and Nginx On Digital Ocean Part 1 — Creating SSH
In this tutorial we will be deploying a Rails app with Passenger, as the application server, and Nginx, as the web server. Also, the Rails app will use Postgres, so we will be installing that as well.
- Passenger: Enterprise grade web app server for Ruby, Node.js, Python
-
I'm having trouble understanding what Rack does. Could you explain-like-I-am-a-beginner? with real examples if possible please.
Here's Puma's implementation, and Here's Passenger's implementation.
-
Rails 7 new production install: from zero to deploy (Ubuntu 20.04 edition)
server { listen 80; listen [::]:80; server_name YOUR_DOMAIN.ORG; # If you deploy without DNS and SSL, you could leave servername blank like below # server_name _; root /home/deploy/APPNAME/current/public; passenger_enabled on; passenger_app_env production; passenger_env_var RUBYOPT '-r bundler/setup'; # Cf issue: https://github.com/phusion/passenger/issues/2409 # Uncomment if you use ActionCable and/or Turbo Streams # location /cable { # passenger_app_group_name APPNAME_websocket; # passenger_force_max_concurrent_requests_per_process 0; # } # Allow uploads up to 100MB in size client_max_body_size 100m; location ~ ^/assets { expires max; gzip_static on; } }
-
Passenger 介紹
> passenger start =============== Phusion Passenger Standalone web server started =============== PID file: /home/leon/Git/MasoniteDemo1/passenger.3000.pid Log file: /home/leon/Git/MasoniteDemo1/passenger.3000.log Environment: development Accessible via: http://0.0.0.0:3000/ You can stop Phusion Passenger Standalone by pressing Ctrl-C. Problems? Check https://www.phusionpassenger.com/library/admin/standalone/troubleshooting/ ===============================================================================
-
5 Basic Things you need to know about managing a Linux server
PHP is great, but not for all of us. What about running Node.js or Python apps? You might be tempted to use proxy_pass but it won't handle the app startup and crashes for us. Luckily we have a better option: Phusion Passenger.
-
Guide on How to Deploy Rails API app
I have been following all day guides on https://www.phusionpassenger.com/ on how to deploy Rails apps with Apache and Passenger.
What are some alternatives?
When comparing PM2 and Phusion Passenger you can also consider the following projects:
supervisor
Puma - A Ruby/Rack web server built for parallelism
Nodemon.io - Monitor for any changes in your node.js application and automatically restart the server - perfect for development
Thin - A very fast & simple Ruby web server
forever - A simple CLI tool for ensuring that a given script runs continuously (i.e. forever)