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

vylth-annotator

v0.0.2

Published

Drop-in design-feedback widget. `npm i -g vylth-annotator && annotator setup` — click bubble, drag rect, screenshot+diagnostics land on your filesystem.

Readme

vylth-annotator (npm)

npm i -g vylth-annotator
annotator setup

That's it.

What npm install actually does

  1. Downloads the JS shim (~3 KB).
  2. Postinstall hook: if pipx is on your PATH, runs pipx install vylth-annotator automatically — that pulls down the Python service (FastAPI + SQLite + the dashboard UI) and all its dependencies.
  3. If pipx isn't there, prints a one-line install hint for your platform (brew install pipx, sudo apt install pipx, etc.) and exits clean. Never fails the npm install.

The CLI then forwards every annotator <cmd> to the Python service:

| You ran | Shim resolves to | |---|---| | annotator <cmd> (after pipx install) | the installed annotator binary on PATH | | annotator <cmd> (no pipx, has uvx) | uvx vylth-annotator <cmd> | | annotator <cmd> (nothing Python) | error with platform-specific install commands |

Why a Node shim at all?

JS developers reach for npm / npx first. The shim gives them a one-command path to the Python tool without making them learn pipx. The actual implementation stays in Python (where the FastAPI service lives), but the user never has to know that.

Optional extras

The base install handles SQLite + local mode. For hosted Postgres or R2-backed image storage, install with extras:

pipx install 'vylth-annotator[postgres,storage]'

You can also do this manually after the npm install — it's idempotent.

Skipping the postinstall

CI / sandboxes / deterministic builds:

VYLTH_ANNOTATOR_SKIP_POSTINSTALL=1 npm i -g vylth-annotator
# or
npm i -g vylth-annotator --ignore-scripts

The shim works without the postinstall — every command goes through pipx run vylth-annotator instead, which is slower-on-first-use but functionally identical.

Quickstart

npm i -g vylth-annotator         # postinstall pipx-installs the Python service
annotator setup                  # detects your project (Vite/Next.js/HTML), wires the widget
annotator run                    # OR: spin up your own local server with dashboard at :8092

The widget POSTs to whichever API base you point it at — https://annot.vylth.com by default for the Vylth team, or http://localhost:8092 if you're self-hosting via annotator run.

See the main repo for full docs.