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

cloud-ide-vps-manager

v1.0.235

Published

Self-hosted VPS control panel — MongoDB, Mail, Security, Backups from one UI over SSH

Readme

cloud-ide-vps-manager

Self-hosted VPS control panel. SSH into all your servers from one UI — no agents needed on remote servers.

Quick Start

# Run instantly (no install needed)
npx cloud-ide-vps-manager

# Or install globally
npm install -g cloud-ide-vps-manager
cloud-ide-vps-manager

First run will ask for a password and port, then open your browser.

CLI Options

cloud-ide-vps-manager              # start (setup on first run)
cloud-ide-vps-manager --port 8080  # custom port
cloud-ide-vps-manager --reset      # reset config / change password
cloud-ide-vps-manager --version
cloud-ide-vps-manager --help

Config is stored in ~/.cloud-ide-vps-manager/.env

Features

| Module | What it does | |---|---| | Servers | Add unlimited servers, SSH key auth, test connection, live CPU/RAM/disk/service stats | | Task Runner | One-click tasks across all categories, real-time terminal output via SSE | | MongoDB | Install v7, enable auth, create users, backup/restore with AES encryption, memory encryption (RAM lock + disable swap), disk encryption (LUKS), field-level encryption codegen, migrate between servers | | Mail Server | Postfix + Dovecot + MariaDB virtual mailboxes (not OS users), DKIM/SPF/DMARC, Roundcube webmail | | System | apt update, swap, UFW firewall, fail2ban, SSH hardening, auto security updates, Node.js + PM2, Nginx, SSL via Certbot | | Backups | MongoDB dump + compress + AES encrypt + S3 upload via rclone | | Monitoring | Netdata install, live stats dashboard | | Schedules | Cron-based scheduler with email + Telegram alerts on failure | | Custom Tasks | Write your own shell tasks, they appear in Task Runner |

Architecture

[Your machine OR cheap manager VPS]
  runs: npx cloud-ide-vps-manager
         │
         │ SSH (key auth only)
         │
  ┌──────┴────────┐
  ▼               ▼
Server 1       Server 2 ...
(app/db/mail)  (anything)

All services on one server? Just point every task at the same server.

Adding Servers

  1. Open dashboard → ServersAdd Server
  2. Enter: name, IP/host, SSH port (default 22), SSH user, path to your private key on the machine running this app
  3. Click Test to verify connection

MongoDB Encryption

The manager offers three layers:

| Layer | Task | What it does | |---|---|---| | Memory | Memory Encryption | Locks mongod process memory (LimitMEMLOCK=infinity), disables core dumps, disables all swap — data never reaches disk unencrypted | | Disk | Disk Encryption (LUKS) | Encrypts entire data volume — raw disk reads are unreadable | | Field | Field Encryption Codegen | Generates a Node.js AES-256-CBC module for encrypting specific fields before they are saved to MongoDB |

Publishing to GitHub Packages

# Login to GitHub Packages
npm login --registry=https://npm.pkg.github.com --scope=@cloudidesys

# Publish
npm publish

Project Structure

cloud-ide-vps-manager/
├── bin/
│   └── cli.js          # CLI entry point (npx / global install)
├── public/
│   └── index.html      # Full single-page UI
├── scripts/
│   ├── tasks.js        # All task definitions
│   └── alerts.js       # Email + Telegram notifications
├── server.js           # Express backend
├── package.json
└── .env.example

Adding Custom Tasks via Code

Edit scripts/tasks.js, add to the TASKS array:

{
  id: "my_task",
  name: "My Task",
  icon: "🚀",
  category: "system",  // system | mongodb | mail | backups | monitoring | custom
  desc: "Short description shown on the card",
  // requiresInput: [{ key: "domain", label: "Domain", placeholder: "example.com" }],
  steps: [
    { label: "Step description", cmd: "sudo some-command" },
    // cmd can be a function receiving input values:
    { label: "Use input", cmd: i => `sudo certbot --nginx -d ${i.domain}` },
    // critical: false means failure won't abort the task
    { label: "Optional step", cmd: "...", critical: false },
  ],
}

License

MIT