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

mirrorneuron-web-ui

v1.1.1

Published

MirrorNeuron web UI dashboard.

Readme

MirrorNeuron Web UI

Browser interface for inspecting a MirrorNeuron runtime through the REST API.

The Web UI shows runtime state, job history, job details, agent graphs, events, and raw manifest submission screens.

Features

  • Runtime dashboard with node and executor-pool status.
  • Job list for active, completed, and pending jobs.
  • Job detail pages with status, agent graph, agent table, and event stream.
  • Dead-letter and communication-log inspection where available from the API.
  • Raw JSON manifest submission.
  • Development proxy to the local mn-api service.

Demo and Screenshots

Screenshots or GIFs should be added here when the UI stabilizes:

docs/images/web-ui-dashboard.png
docs/images/web-ui-job-detail.png

Tech Stack

| Area | Tooling | | --- | --- | | Runtime | Node.js and npm | | Framework | React | | Build tool | Vite | | Styling | Tailwind CSS | | Graph view | React Flow | | Tests | Vitest | | Packaging | npm package mirrorneuron-web-ui |

Prerequisites

  • Node.js and npm.
  • A running MirrorNeuron API. The default local API is http://localhost:4001/api/v1.

Installation

For local development:

npm install

The released-package installer installs the published npm package automatically when Web UI installation is enabled.

Configuration

Vite exposes MN_ environment variables to the browser build.

| Variable | Default | Description | | --- | --- | --- | | MN_WEB_API_BASE_URL | /api/v1 | REST API base URL used by the browser. | | MN_WEB_API_TOKEN | unset | Optional bearer token for protected API instances. | | MN_WEB_UI_HOST | localhost | Development server bind host. | | MN_API_HOST | localhost | Development proxy API host. | | MN_API_PORT | 4001 | Development proxy API port. |

Running

Start the API first:

mn-api

Start the Web UI in development mode:

npm run dev

Open:

http://localhost:5173

Build

npm run build

Preview the production build:

npm run preview

Testing and Linting

npm run lint
npm test -- --run

Package Publishing

Stable SemVer tags publish to npm through GitHub Actions Trusted Publishing after the release workflow succeeds. Prerelease tags create GitHub prereleases and skip npm by default.

The npm package is:

mirrorneuron-web-ui

Deployment

The standard deployment path is mn-deploy/install_new.sh. It installs the npm package, copies the built dist/ output into the local Web UI install directory, and starts it through mn start.

For custom deployments:

  1. Build the app with npm run build.
  2. Serve the generated dist/ directory with a static file server.
  3. Point MN_WEB_API_BASE_URL at the API path available to the browser.

Troubleshooting

| Symptom | Check | | --- | --- | | UI loads but API calls fail | Confirm mn-api is running and the dev proxy target matches MN_API_HOST and MN_API_PORT. | | Protected API returns unauthorized | Set MN_WEB_API_TOKEN. | | Graph page is empty | Confirm the selected job has graph data available from the API. | | Build fails on type errors | Run npm run lint and npm test -- --run before npm run build. |

Contributing

Keep UI changes aligned with the REST API contract. Add or update Vitest coverage for data loading, rendering states, and user actions.

License

MIT.