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

@voudo/devpanes

v1.4.0

Published

Split-pane terminal UI for managing multiple dev processes

Downloads

989

Readme

devpanes, by Voudo

Split-pane terminal UI for managing multiple dev processes. Zero dependencies, pure ESM, Node >= 18.

Kapture 2026-03-17 at 10 16 49

Install

# Install as a dev dependency (recommended)
npm install --save-dev @voudo/devpanes

Note: npx @voudo/devpanes won't work due to an npm quirk with scoped packages where the bin name (devpanes) doesn't match the package name. Use the one-liner below, or just install it first and run npx devpanes.

# Zero-install one-liner
npx -p @voudo/devpanes devpanes

Quick Start

Create devpanes.config.mjs in your project root:

export default {
  name: 'My Project',
  apps: [
    { key: 'web', label: 'Frontend', cwd: 'packages/web', cmd: 'npm', args: ['run', 'dev'], port: 3000 },
    { key: 'api', label: 'API', cwd: 'packages/api', cmd: 'npm', args: ['start'], port: 8080 },
    { key: 'db', label: 'Database', cwd: '.', cmd: 'docker', args: ['compose', 'up'], shell: true },
  ],
}

Then add a script to package.json and run:

{ "scripts": { "dev": "devpanes" } }
npm run dev

CLI Options

devpanes [options]
  --config <path>    Path to config file
  --all              Start all apps, skip selection menu
  --apps <keys>      Comma-separated app keys to start (e.g. --apps web,api)
  --help             Show help
  --version          Show version

Config Reference

Config file discovery

  1. --config <path> CLI flag
  2. devpanes.config.mjs in current directory
  3. devpanes.config.js in current directory
  4. "devpanes" key in package.json

Config shape

export default {
  name: 'Project Name',      // optional — shown in menu header
  apps: [                     // required — at least one app
    {
      key: 'web',             // required — unique identifier
      label: 'Web App',       // required — display name
      cwd: 'packages/web',   // required — working directory (relative to config file)
      cmd: 'npm',             // required — command to run
      args: ['run', 'dev'],   // optional — arguments (default: [])
      port: 3000,             // optional — enables port-in-use detection
      env: { NODE_ENV: 'dev' }, // optional — extra environment variables
      shell: false,           // optional — pass to child_process.spawn
      infra: {                // optional — pre-start command
        cmd: 'docker',
        args: ['compose', 'up', '-d'],
        label: 'docker',
      },
    },
  ],
  settings: {                 // optional
    maxBufferLines: 500,      // lines per pane buffer (default: 500)
    colors: [...],            // custom ANSI color rotation
    pathAugment: true,        // add node_modules/.bin to PATH (default: true)
  },
}

Keyboard Shortcuts

| Key | Action | |-----|--------| | 1-9 | Toggle pane visibility | | ! @ # $ % ^ & | Expand/collapse pane (Shift+1-7) | | Tab | Cycle focus between panes | | / | Scroll focused pane | | Page Up / Page Down | Scroll focused pane by full page | | i or Enter | Enter input mode (send stdin to focused pane) | | Esc | Exit input mode, or unfocus pane | | Mouse click | Focus a pane | | Scroll wheel | Scroll a pane | | s | Start more apps (opens selection menu) | | k | Kill an app (opens kill menu) | | q / Ctrl+C | Quit — stops all apps and restores terminal |

Features

  • Interactive selection menu — choose which apps to start with checkbox UI
  • Split-pane output — each process gets its own vertical pane with color-coded output
  • Expand/collapse — focus on one pane while keeping others visible
  • Show/hide — toggle panes on and off with number keys
  • Port detection — warns when a port is already in use
  • Infrastructure pre-start — run setup commands (e.g. docker compose) before starting an app
  • Process input — send stdin to any running process via input mode (i or Enter on a focused pane)
  • Scroll and focus — focus a pane with Tab or mouse click, scroll with arrow keys or scroll wheel
  • Graceful cleanup — kills all process groups and restores terminal on exit
  • 60fps debounced rendering — smooth output even with fast-scrolling builds
  • 500-line circular buffers — keeps memory bounded per pane

Alternatives

devpanes is a lightweight, focused tool for one specific workflow — managing a handful of local dev processes during rapid prototyping. It's not the only way to solve this problem, and depending on your needs, one of these might be a better fit:

Process runners — Run multiple commands in parallel with merged, color-coded output in a single stream:

  • concurrently — The most popular option (~9M weekly npm downloads). Simple and effective.
  • npm-run-all2 — Great for running multiple npm scripts in parallel or sequence.
  • node-foreman — Procfile-based, if you're coming from the Ruby/Foreman world.

TUI process managers — Terminal UIs purpose-built for viewing multiple processes:

  • mprocs — Rust-based TUI with a sidebar/detail view and YAML config. Well-regarded.
  • procmux — Python-based, similar to mprocs with an HTTP control server.

Terminal multiplexers — General-purpose terminal splitting (you manage processes yourself):

  • tmux — The standard. Extremely powerful and scriptable.
  • Zellij — Modern alternative to tmux with discoverable keybindings and layout templates.

Heavier orchestration — When you need containers, networking, or production parity:

  • Docker Compose — The standard for multi-container local development.
  • Overmind — Procfile runner backed by tmux, lets you attach to individual processes.

License

MIT