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

@loomboard/app

v0.1.2

Published

Run the loomboard chat app locally — serves the SPA and reverse-proxies /v1 to your loomcycle (no CORS setup). Cross-platform via Node.

Readme

@loomboard/app

Run the loomboard chat app locally — no build step, no CORS setup. Works on Linux, macOS, and Windows (anywhere Node ≥ 18 runs).

npm install -g @loomboard/app
loomboard

This starts a local server, opens your browser, and shows the loomboard chat UI. In the connection screen enter your loomcycle Base URL and bearer token, pick an agent, and chat.

Prefer not to install globally? Use it one-shot:

npx @loomboard/app

Why a local server?

loomboard is a browser SPA that talks to a loomcycle runtime over /v1/*. loomcycle sends no CORS headers, so a browser can't call a remote runtime cross-origin. This CLI serves the app and reverse-proxies /v1/* to the loomcycle you name in the connection screen — so any reachable runtime (local, LAN/TrueNAS, remote) works with no extra setup.

Your bearer token stays in the browser (localStorage) and is only forwarded upstream on your requests — this process never reads, stores, or logs it.

Options

loomboard [--port <n>] [--host <addr>] [--loomcycle <url>] [--insecure] [--no-open]

  --port <n>         Port to listen on (default 4173, or $PORT)
  --host <addr>      Interface to bind (default 127.0.0.1)
  --loomcycle <url>  Default loomcycle target when the Base URL is left blank
                     (default $LOOMBOARD_PROXY_TARGET or http://127.0.0.1:8787)
  --insecure         Don't verify the loomcycle's TLS cert (self-signed LAN only)
  --no-open          Don't open the browser automatically

Security

The server binds to loopback (127.0.0.1) by default and validates the Host header, so the /v1 proxy is reachable only from your machine — it is not an open proxy, and DNS-rebinding attacks are refused. TLS certificates are verified by default (--insecure opts out only for a self-signed LAN runtime). Binding a non-loopback --host deliberately exposes the proxy to your network; do that only on a network you trust.

Embedding instead?

If you want the chat inside your own React app rather than as a standalone tool, use the component: @loomboard/chat.