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

create-canary

v0.4.4

Published

Set up canary — browser automation + recorded QA sessions. Run `npm create canary`.

Readme

create-canary

The guided setup wizard for Canary — an AI-agent QA toolkit that drives real browsers, records QA sessions (Playwright trace, video, network HAR, console), and renders self-contained verification reports.

npm license

One command to get Canary and its browser runtime set up — no flags to remember. Every step just shells out to the same published commands you could run by hand, so there's no magic and nothing bespoke to uninstall. Agent integration (skills, Claude Code plugin) is deliberately left to you: after setup the wizard prints the exact commands to run.

Use

npm create canary
# or:  npm init canary  ·  pnpm create canary  ·  yarn create canary

You'll get a checklist (space toggles, enter confirms). Recommended items are pre-selected:

| Step | Default | What it runs | | --- | --- | --- | | Install the canary command globally | ✓ | npm i -g @usecanary/cli | | Install the browser runtime (Chromium) | ✓ | canary install | | Also install canary-browser globally | — | npm i -g @usecanary/browser | | Also install the canary-viewer viewer globally | — | npm i -g @usecanary/ui |

Installing the CLIs globally puts canary, canary-browser, and canary-viewer on your PATH so day-to-day use drops the npx prefix. The wizard never installs the plugins itself — once setup completes it prints the commands (Claude Code /plugin …, Cursor / Codex marketplace) so each agent's own mechanism does the work.

Non-interactive

In a pipe or CI (no TTY), the wizard prints the exact commands to run instead of prompting — safe to inspect before executing.

After setup

Add the agent integration yourself (one-time):

# Claude Code: /plugin marketplace add wizenheimer/canary  then  /plugin install canary@canary-marketplace

Then record a session:

canary session start --name "checkout"   # start a recorded session (prints an id)
canary run ./step.js --session <id> --step "open"
canary session end <id>                  # -> ~/.canary/sessions/<id>/report.html
canary-viewer                            # browse recorded sessions

Using a coding agent? Try /canary:verify (plan QA for your changes) or /canary:session (record a flow) in Claude Code / Cursor / Codex. See examples/ in the repo for runnable demos.

Related packages

MIT · source