npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@drocketxx/pm2me

v1.1.38

Published

PM2 Deployment and Management System — Web UI for PM2 process management

Readme

PM2Me 🚀

A self-hosted, premium web dashboard for deploying and managing Node.js applications via PM2.

PM2Me lets you deploy apps directly from a GitHub repository, manage PM2 processes, monitor your server in real-time, and receive webhook-triggered auto-deployments — all from a beautiful, dark-mode UI.

Buy Me a Coffee

PM2Me Dashboard


🚀 Recommended Installation

The standard way to use PM2Me is to install it globally via npm:

# Install globally
npm install -g @drocketxx/pm2me

📋 Commands

Standard Execution

# Run the server in foreground
pm2me

# Run on a custom port
pm2me --port 8080

Background Service (Recommended)

Manage PM2Me as a system service using these commands:

# Install & start as a background service (using PM2)
pm2me service install

# Uninstall/Remove the service
pm2me service uninstall

# Control the service
pm2me service start
pm2me service stop
pm2me service restart

Note: The service install command will register PM2Me as pm2me-server in PM2 and attempt to set up system startup.


✨ Features

| Feature | Details | |---|---| | 🖥 Dashboard | View all PM2 apps with real-time status, CPU, memory, uptime | | 🚀 Deploy from GitHub | Clone & deploy any GitHub repo with PAT authentication | | 🔄 Auto-Sync via Webhook | Automatically re-deploy on git push using GitHub Webhooks | | 📊 Server Monitor | Real-time CPU, RAM, Disk, Network, and System Uptime via Socket.IO | | 📜 Live Logs | Stream PM2 app logs in the browser in real-time | | 🔔 Notifications | Deployment alerts via Discord Webhook or Telegram Bot | | 🔐 Admin Login | Secure JWT-based authentication with bcrypt hashed passwords | | ⚙️ Settings Page | Manage GitHub accounts, webhook secrets, and notification integrations | | 📋 Webhook History | Last 50 webhook events logged and updated in real-time | | 🗑 Delete/Stop/Restart | Full PM2 lifecycle management with a premium custom UI |


🧱 Tech Stack

Backend

Frontend


🔐 Setup & Security

First Run

On your first run, PM2Me will guide you through a Setup Wizard to configure your apps storage path and set your admin password.

Data Storage

  • Database: Stored in ~/.pm2me/database.json
  • Cloned Apps: Default to ~/.pm2me/apps/ (User configurable)

GitHub Webhooks

  1. Go to your GitHub repository → SettingsWebhooksAdd webhook
  2. Set Payload URL to: http://your-server-ip:12345/api/webhook
  3. Set Content type to: application/json ⚠️
  4. Set Secret from the Settings page in PM2Me
  5. Select Just the push event

🛠️ Manual Installation (For Developers)

If you want to contribute or run from source:

# 1. Clone the repository
git clone https://github.com/drocketxx/PM2Me.git
cd PM2Me

# 2. Install all dependencies
npm run install:all

# 3. Build the frontend
npm run build

# 4. Start in development mode
npm run dev

🛡 Security Notes

  • Set a strong admin password during the setup wizard.
  • Always use a Webhook Secret to prevent unauthorized deployment triggers.
  • Consider putting PM2Me behind a reverse proxy (e.g., Nginx) with HTTPS in production.

📄 License

MIT