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

uiverify

v1.4.2

Published

UI Verify CLI (uiverify.ai): upload a prebuilt Storybook (or Playwright archive) bundle for visual testing for agents, stream render progress, and gate CI on the visual verdict.

Readme

UI Verify

Visual testing for agents

Catch unintended UI changes on every pull request. UI Verify renders your components in the cloud, diffs them against a baseline, and lets a coding agent triage what actually changed.

uiverify @uiverify/playwright License: MIT

uiverify.ai  ·  GitHub  ·  CLI  ·  Playwright SDK  ·  Skills


uiverify

The CI uploader for UI Verify. uiverify upload uploads your prebuilt Storybook bundle (or a Playwright/Vitest archive, or a directory of finished screenshots), streams render progress (Rendered X / N), and reflects the visual verdict (changed / failed) in its exit code so CI can gate on it.

Usage

Build your Storybook first, then point --static-dir at its output:

npm run build-storybook
UIVERIFY_API_KEY=... npx uiverify upload --static-dir storybook-static

Or upload finished screenshots your own harness already produced (native, mobile, React Native, anything) with --screenshots. No Storybook and no server-side rendering: UI Verify diffs, judges, and baselines the PNGs directly.

UIVERIFY_API_KEY=... npx uiverify upload --screenshots ./screenshots

Each image is keyed by its path under the directory with the extension dropped, so a screen maps to the same baseline every build. Upload only the screens you changed and the rest carry forward (the client is the source of truth for what changed, the same trade-off TurboSnap and Argos make).

Options

  • --static-dir <dir>: the prebuilt Storybook static directory to upload (e.g. storybook-static).
  • --screenshots <dir>: a directory of finished PNG/JPG screenshots to upload directly (native / mobile / React Native), instead of --static-dir. Skips rendering entirely; images are keyed by their path under the directory.
  • --working-directory <dir>: the repo checkout (git metadata + the bundle live here).
  • --api-url <url>: UI Verify API URL (default https://uiverify.ai; or UIVERIFY_API_URL).
  • --auto-accept-changes: accept this build's changed snapshots as the new baseline (no review). Typically used on merges to your default branch.
  • --exit-zero-on-changes: detect but don't block. A changed (needs-review) verdict exits 0 and stays pending review; failed still exits non-zero.
  • --only-changed: render only the stories this commit's changed files could affect and carry the rest forward. Opt-in per build; see Only changed stories below.
  • --strict / --no-strict: whether an operational failure (missing key, missing bundle, network error) fails the job. Strict by default.

Exit codes: 0 success (or an operational failure under --no-strict), 1 the visual verdict or an operational failure under strict, 2 a malformed invocation (unknown option, boolean given a value, stray token). Exit 2 ignores --no-strict - that flag means "don't fail my job if the upload breaks", not "run with arguments I didn't mean".

Only changed stories

--only-changed renders just the stories your commit could have affected and carries every other baseline forward at a fraction of a snapshot each, so a one-component PR costs far less than a full suite. It is Storybook only - a Playwright archive has no dependency graph, so those uploads always render in full and the flag is ignored. UI Verify works it out server-side from your bundle's Storybook dependency graph, which exists only if you build with --stats-json:

npm run build-storybook -- --stats-json
UIVERIFY_API_KEY=... npx uiverify upload --static-dir storybook-static --only-changed

Without that graph there is no fallback: the build renders every story even with the flag on, deliberately, since a filename heuristic can't tell that a page story imports the component you changed.

Environment

  • UIVERIFY_API_KEY (required): your project key. Only ever sent in the Authorization header, and redacted from all logs.
  • UIVERIFY_API_URL: override the default API URL (self-host / local dev).

License

MIT