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

gha-dash

v0.6.0

Published

GitHub Actions dashboard — workflow status across multiple orgs/accounts

Readme

gha-dash

Local web dashboard for GitHub Actions. See workflow status across all your repos at a glance.

Only prerequisite: an authenticated gh CLI.

npx gha-dash

Opens http://localhost:3131 in your browser. All settings are configurable from the UI.

| Flag | Description | | ------------------ | ------------------------------------ | | --port N, -p N | Use a different port (default: 3131) | | --no-open | Don't auto-open browser |

What it does

  • Shows workflow runs in a sortable, searchable table grouped by repo
  • Auto-refreshes via background polling
  • Collapsible repo groups with color-coded status dots
  • Filter to failures only with one click
  • Trigger workflow_dispatch workflows with typed input forms
  • Dark mode (automatic via OS preference)
  • Works immediately — discovers your repos on first run, no config needed

Screenshot

gha-dash screenshot

Configuration

Config lives at ~/.config/gha-dash/config.json (Linux/macOS) or %APPDATA%/gha-dash/config.json (Windows).

| Field | Default | Description | | ----------------- | ---------------- | ---------------------------------------------------------- | | repos | [] | Repos to monitor. Empty = discover all your repos. | | refreshInterval | 3600 | Seconds between API refreshes. | | rateLimitFloor | 500 | Stop refreshing when API calls remaining drops below this. | | rateBudgetPct | 50 | Max percentage of rate limit to use per refresh cycle. | | hiddenWorkflows | ["dependabot"] | Hide workflows whose name contains any of these. | | port | 3131 | Server port. |

Use the Settings page to add/remove repos and configure options interactively.

Rate limiting

gha-dash caches aggressively to stay within GitHub's 5,000 requests/hour limit:

  • Default branch names are cached permanently (fetched once per repo)
  • Workflow data is cached to disk — restarts don't refetch
  • Refreshes skip entirely when remaining calls are below the floor
  • When budget is tight, repos are refreshed in rotating batches

Development

git clone https://github.com/photostructure/gha-dash
cd gha-dash
npm install
npm run dev       # starts Express (API on :3131) + Vite (UI on :5173)
npm test          # vitest
npm run build     # production build → dist/

npm run dev opens http://localhost:5173 automatically. The Vite dev server proxies API requests to Express on port 3131. In production (npx gha-dash), everything is served from a single port.

Acknowledgments

Inspired by github-action-dashboard by Chris Kinsman.

Sponsor

This project is sponsored by PhotoStructure, Inc.

License

Apache-2.0