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

monoboard

v0.1.0

Published

A local dashboard for running and observing pnpm monorepo packages.

Readme

MonoBoard

MonoBoard is a local dashboard for pnpm monorepos. It installs into an isolated .monoboard/ folder inside your existing repository, scans workspaces, runs package scripts, and streams terminal output back to the browser.

Status

MonoBoard is in early MVP development. The current version supports:

  • pnpm workspace discovery from pnpm-workspace.yaml
  • package script execution from the browser
  • live stdout/stderr streaming over WebSocket
  • one-click Cloudflare Workers deploys for buildable workspaces
  • an isolated .monoboard/ install that keeps MonoBoard files separate from app code

Requirements

  • Node.js 22.12 or newer
  • pnpm 10.15 or newer
  • A target repository with pnpm-workspace.yaml

Install Into A Monorepo

From this source checkout during local development:

cd /path/to/your/monorepo
pnpm --dir /path/to/monoboard init:monoboard

You can also pass the target repo explicitly:

cd /path/to/monoboard
pnpm init:monoboard /path/to/your/monorepo

The installer creates:

.monoboard/
  app/
  monoboard.config.json
  start.sh

MonoBoard does not edit your apps, packages, or root package.json.

Start

From your monorepo:

./.monoboard/start.sh

The script installs MonoBoard dependencies inside .monoboard/app when needed, builds the UI once, then starts the backend. The backend serves the API, WebSocket, and the built UI all on a single port.

Open http://127.0.0.1:1709 in your browser. MonoBoard listens on the local machine only by default, because it can run workspace scripts and deployments.

You can also start via the CLI (after monoboard init):

monoboard start

Install with pnpm

Once MonoBoard is published to npm, use pnpm without a global installation:

cd /path/to/your/monorepo
pnpm dlx monoboard init
./.monoboard/start.sh

This is the recommended install flow. You can also add it to a repository as a development dependency with pnpm add -D monoboard, then run pnpm exec monoboard init.

The local source command above mirrors the published-package flow.

Development

Install dependencies for this repository:

pnpm install
pnpm --dir ui install

Run the backend against the current directory or a target repo:

pnpm dev:backend
MONOBOARD_TARGET_REPO=/path/to/your/monorepo pnpm dev:backend

Run the UI (dev mode with hot reload, proxies /api and /ws to the backend on 1709):

pnpm dev:ui

Production single-port mode (builds the UI, then serves everything on http://127.0.0.1:1709):

pnpm build
pnpm start

Checks

pnpm test
pnpm typecheck
pnpm lint:ui
pnpm build:ui

One-Click Deploy

MonoBoard shows a Deploy button for workspaces that have a build script. The first deploy target is Cloudflare Workers.

Default behavior:

  • builds the workspace with pnpm --dir <workspace> run build
  • detects the project stack and runs its supported build/deploy flow
  • uses the package name as the default Cloudflare Worker name
  • publishes to https://<project>.workers.dev

You can override the deploy target in a workspace package.json:

{
  "name": "@acme/site",
  "scripts": {
    "build": "next build"
  },
  "monoboard": {
    "deploy": {
      "provider": "cloudflare-workers",
      "projectName": "acme-site",
      "outputDir": "out"
    }
  }
}

Before deploying, log in to Cloudflare once on the same machine:

pnpm dlx wrangler login

The deploy log streams into the MonoBoard terminal panel.

Security

MonoBoard is a local development tool and can run scripts declared by your workspace packages. It binds to 127.0.0.1 by default and does not enable cross-origin API access. Do not expose it to a network unless you place it behind authentication and intentionally set MONOBOARD_HOST.

API

  • GET /api/health
  • GET /api/workspaces
  • GET /api/runs
  • POST /api/scripts/run
  • POST /api/deployments/run
  • POST /api/runs/:runId/stop

WebSocket clients connect to the backend root and receive run events:

  • runs:snapshot
  • run:started
  • run:output
  • run:status

License

ISC