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

@lordierclaw/bluenote-webui

v0.4.8

Published

Local web UI for BlueNote.

Readme

@lordierclaw/bluenote-webui

Local-first browser UI for BlueNote. It runs a localhost-only Node server around @lordierclaw/bluenote-core; the browser talks to that server over HTTP and does not read BlueNote workspaces directly.

Role in BlueNote

This repo owns:

  • browser UI layout and interaction
  • localhost server/proxy behavior
  • web setup flow
  • WebUI command entrypoint and public command API
  • browser-facing integration for core note/search/storage/AI workflows

It does not own core storage/search/AI semantics, terminal UI behavior, or top-level distribution routing.

Install

For the full BlueNote app, install the distribution CLI first, then install this optional browser client:

npm install -g @lordierclaw/bluenote
npm install -g @lordierclaw/bluenote-webui
bluenote doctor

Start the local daemon through the distribution CLI, then launch the WebUI through the distribution command:

bluenote daemon start
bluenote web

The distribution README is the canonical guide for full app install, uninstall, PATH setup, and optional client verification.

Local development

Expected sibling checkout layout:

../bluenote-core
../bluenote-webui
../bluenote

For source-link app setup:

cd ../bluenote
npm ci --include=dev
npm run check
npm link

cd ../bluenote-webui
npm ci --include=dev
npm run check
npm link

bluenote doctor

For WebUI-only development:

cd ../bluenote-core
npm ci --include=dev
npm run build

cd ../bluenote-webui
npm ci --include=dev
npm run dev

The dev server binds locally. The API defaults to 127.0.0.1:4174; Vite proxies /api to it. For restricted environments, build once and run the single local server:

npm run build
npm run start

Then open http://127.0.0.1:4174.

Scripts

npm run dev        # local API server + Vite UI
npm run build      # TypeScript server build + Vite client build
npm run start      # run built local server, serving API and static UI
npm run typecheck
npm run lint
npm run test
npm run check      # typecheck + lint + test + build

Distribution packages can start the WebUI without importing internal files:

import { runWebCommand } from "@lordierclaw/bluenote-webui"

await runWebCommand(["--host", "127.0.0.1", "--port", "4174"])

Packaging and versions

The package name is @lordierclaw/bluenote-webui. The public executable discovered on PATH is bluenote-webui.

The package consumes the latest published @lordierclaw/bluenote-core through public exports by default. Distribution packages should call the public executable or public command API instead of importing WebUI internals.

Maintainer release flow: publish a GitHub Release for the matching v* tag. The release workflow verifies the package first and only then publishes to npm.

Cross-platform notes

  • Runtime target: Node >=16.14 <17 || >=18.
  • Tooling uses npm, TypeScript, Vite, and the local server build.
  • Server and browser UI bind to localhost by default.
  • Browser responses must mask secrets; raw API keys, bearer tokens, provider headers, and .data/ai/* files are never returned or served.

Related packages

  • @lordierclaw/bluenote: official distribution CLI and top-level app command.
  • @lordierclaw/bluenote-core: shared headless note/search/storage/AI behavior.
  • @lordierclaw/bluenote-term: terminal/TUI client.