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

@aip-tech/braid-plugin-ui

v0.4.0

Published

A web dashboard for braid: live process status, stop/restart buttons, and per-process live log tailing with scroll-back history, served straight off braid's own control server.

Readme

@aip-tech/braid-plugin-ui

A web dashboard for braid: live process status, stop/restart buttons, and per-process live log tailing with scroll-back history, served straight off braid's own control server. No separate server, no extra port to manage - it's a braid plugin.

Install

npm install --save-dev @aip-tech/braid-plugin-ui

Requires @aip-tech/braid >=0.4.0 (the version that added the paginated /api/logs/history route and logs.timestamps this plugin's log view depends on).

Use

List it in your braid.config.ts's plugins array:

export default defineConfig({
	processes: [/* ... */],
	plugins: ["@aip-tech/braid-plugin-ui"],
});

Start braid as usual. braid start prints a line with the URL to open right in its own terminal (needs @aip-tech/braid >=0.3.1 - on an older version, check .braid/daemon.log instead):

[plugin:ui] dashboard ready - open http://127.0.0.1:54213/?token=... in your browser

Open that URL once - it sets a session cookie and redirects to the plain http://127.0.0.1:<port>/, so the token doesn't linger in your address bar or history. If the daemon restarts, its token changes too; check the log again for a fresh URL.

Options

plugins: [["@aip-tech/braid-plugin-ui", { path: "/dashboard/" }]],
  • path - URL prefix the dashboard is served under. Default "/".

What it does (and doesn't) do

Shows every configured process's name, pid, running/stopped status, and start time, polling every 2 seconds. Stop and Restart buttons per process. A top bar shows the host project's installed @aip-tech/braid version (read from its own package.json at register time).

Click a process's name for its own page: the same Stop/Restart actions, plus that process's log output streaming live underneath, rendered with its real ANSI colors. It starts with the last 300 lines; a "Load older lines" button loads further back into the process's retained history (bounded by logs.maxSizeBytes - the current file plus one rotation backup) - one page per click, nothing loads automatically. The log view is virtualized, so a long-lived session or a deep scroll-back doesn't grow the page's DOM without bound.

Any plugin can stop or restart any configured process (PluginContext. stopProcess/restartProcess - see @aip-tech/braid's plugin docs), the same trust level as any other dependency in your node_modules.