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

muxox

v1.0.2

Published

A terminal-based service orchestrator and process multiplexer for development workflows

Readme

muxox

Run all your dev services from one terminal.

muxox is a CLI-based service orchestrator that makes it easy to start, stop, and monitor multiple processes during development—without juggling a bunch of windows or tabs.

Features

  • Service orchestration
  • Live status
  • Log viewer
  • Simple config
  • Start, stop, restart with quick keys

Installation

npm install -g muxox

Or use with npx:

npx muxox

Quick Start

  1. Create a muxox.toml file in your project:
[[service]]
name = "frontend"
cmd = "pnpm client:dev"
cwd = "./"
log_capacity = 5000

[[service]]
name = "backend"
cmd = "pnpm server:dev"
cwd = "./"
  1. Run muxox:
muxox
  1. Optional: point to a custom config:
muxox --config path/to/muxox.toml
  1. Output raw logs instead of TUI:
muxox --raw

Key Bindings

  • ↑ / ↓: Select a service
  • Enter: Start/stop the selected service
  • r: Restart the selected service
  • q: Quit Muxox

Configuration

Each service supports:

  • name: Unique identifier (required)
  • cmd: Command to run (required)
  • cwd: Working directory (optional, defaults to current dir)
  • log_capacity: How many log lines to keep in memory (optional, default 2000)

Tips

  • Use cwd to run commands from anywhere.
  • Pick log_capacity large enough to cover your typical debugging session, but not so large that it eats RAM.

Platform Support

This package automatically downloads and installs the appropriate pre-built binary for your platform:

  • Linux (x86_64)
  • macOS (Intel and Apple Silicon)
  • Windows (x86_64)

Troubleshooting

  • Not working on platform X: File an issue with details.
  • Command not found: Ensure the command in cmd is installed and available on your PATH.
  • Permission denied: Check file permissions or try adjusting the command.
  • Logs look truncated: Increase log_capacity in your muxox.toml.
  • Colors look off: Use a terminal that supports true color.

Requirements

  • Node.js 14.0.0 or higher (for npm installation)
  • A terminal with true color support
  • All commands referenced in your config must be available in PATH

License

MIT License

Copyright (c) 2025 Geoff Seemueller

More Information

For more details, visit the GitHub repository.