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

@corralimited/snapdiff-cli

v0.2.1

Published

Command-line interface for SnapDiff. Capture screenshots, run visual diffs, and manage project baselines from the terminal or CI.

Downloads

561

Readme

@corralimited/snapdiff-cli

Command-line interface for SnapDiff. Capture screenshots, run visual diffs, and manage project baselines from the terminal or CI.

# One-off
npx @corralimited/snapdiff-cli --help

# Or install globally
npm install -g @corralimited/snapdiff-cli

Setup

Get an API key at https://snapdiff.ai/dashboard, then export it:

export SNAPDIFF_API_KEY=sd_live_...

(Alternatively, pass --api-key to any command.)

Commands

snapdiff snapshot <url>

Capture a screenshot of a URL.

snapdiff snapshot https://example.com
snapdiff snapshot https://example.com --full-page --width 1440
snapdiff snapshot https://example.com --selector ".hero" --dark-mode

snapdiff diff <before> <after>

Compare two URLs (or ss_xxx screenshot ids) visually.

snapdiff diff https://example.com https://staging.example.com
snapdiff diff https://example.com https://staging.example.com \
  --threshold 0.05 --ignore ".timestamp" --ignore "#ad-banner" --full-page

Exits with code 2 when the pages differ (the result JSON is still printed). Useful in CI:

snapdiff diff $PROD_URL $STAGING_URL > diff.json || echo "::warning::Visual change detected"

snapdiff diff-baseline <project> <page> <after>

Compare a URL against the stored baseline for a project + page (+ branch). Server-side baseline resolution — single round trip.

snapdiff diff-baseline acme-marketing pricing https://staging.acme.com/pricing
snapdiff diff-baseline acme-marketing pricing https://staging.acme.com/pricing --branch feat/redesign

Same exit codes as diff: 0 match, 2 differs, 1 error.

snapdiff projects ls / snapdiff projects get <projectId>

snapdiff projects ls
snapdiff projects get prj_X3V-3SzmJ61WIdxY

Global flags

| Flag | Notes | |---|---| | --api-key <key> | Override the SNAPDIFF_API_KEY env var. | | --api-url <url> | Point at a non-default API base. Mostly for testing. |

Exit codes

| Code | Meaning | |---|---| | 0 | Success (e.g. diff matched). | | 1 | Error — invalid args, network, API error. Message goes to stderr. | | 2 | Diff command ran, but pages did not match. Result JSON is still printed to stdout. |

License

MIT — see LICENSE.