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

dashscout

v0.1.0

Published

One dark dashboard to find and open every agent/AI dashboard running on your localhost. Zero dependencies, runs with npx.

Downloads

54

Readme

dashscout

npm CI license node

One dark single-pane dashboard for every agent / AI dashboard running on your localhost. It scans your listening ports, probes each one over HTTP, highlights the ones that look like agent or AI tools (LangGraph, Ollama, CrewAI, Gradio, Streamlit, Claude/OpenAI apps…), and gives you one page to open them all. Zero dependencies. Runs with npx.

npx dashscout

Then open http://localhost:4477.

Run it

npx dashscout            # start the dashboard on :4477
npx dashscout --open     # …and open your browser
npx dashscout --port 8080
npx dashscout --once     # scan once, print JSON, exit — pipe it anywhere

No install, no config, no API key. It reads what's already listening on your machine.

What it does

| Step | How | |---|---| | Discover | Lists every TCP port in LISTEN state via lsof (falls back to ss / netstat). | | Probe | Requests http://127.0.0.1:<port>/ with a short timeout, reads the status, Server header and <title>. | | Tag | Flags a service as agent / AI when its title, body or headers match known signals (agent, langgraph, ollama, crewai, autogen, gradio, streamlit, claude, openai, …). | | Serve | A dark auto-refreshing dashboard (every 3s) with search, one-click Open ↗, and process/PID/HTTP metadata per card. |

Non-HTTP ports (databases, SSH, etc.) are probed and quietly skipped — only things that answer HTTP show up.

Options

| Flag | Default | Description | |---|---|---| | --port <n> | 4477 | Port for the dashboard itself (also honours PORT). | | --open | off | Open the dashboard in your default browser on start. | | --once | off | Print discovered services as JSON and exit — no server. | | -h, --help | | Show help. | | -v, --version | | Show version. |

Use it as a library

The scanner is exported, so you can build your own view on top of it:

import { scan, probe, listListeningPorts } from "dashscout";

const services = await scan();
// → [{ port, pid, command, status, title, server, isAI }, ...]

Requirements

  • Node.js ≥ 18
  • macOS or Linux for full process names (lsof / ss). Windows works via netstat with reduced process detail.

How the pieces fit

| Area | Path | |---|---| | CLI + arg parsing | bin/dashscout.js | | Discovery & probing | src/scan.js | | Dashboard server + JSON API | src/server.js | | Dashboard UI (self-contained HTML) | src/ui.js | | Tests | test/scan.test.js |

Contributing

Issues and PRs welcome — see CONTRIBUTING.md. Run the suite with npm test.

License

MIT © Pranav Patil