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

fixprove

v0.1.12

Published

FixProve CLI (open-core) - deterministic AST-level verification that AI-generated code references real, installed symbols.

Readme

fixprove (CLI, open-core)

FixProve proves your AI-generated code before it merges — deterministically verifying that every import, symbol, method, and API call resolves against your real installed dependencies, in CI, with zero LLM tokens.

npm install -g fixprove
fixprove check /path/to/your/project

This npm package is a thin wrapper: the actual deterministic resolver engine is Python, published separately to PyPI (pip install fixprove). This wrapper invokes it as a subprocess and forwards its output/exit code unchanged — install both if you want the npm i -g fixprove experience:

pip install fixprove
npm install -g fixprove
fixprove check .

If the Python engine isn't installed, fixprove check prints an actionable pip install fixprove message and exits non-zero — it never hangs or silently reports a clean pass.

Privacy

As of the current version, the FixProve CLI and analysis engine make no network calls and collect no telemetry — your code is analysed entirely on your own machine or CI runner. If a future version adds any network capability (including opt-in telemetry), this section and the project's Privacy Policy will be updated together, and any opt-in will require your explicit consent.

This applies to the CLI only. The FixProve GitHub App is a separate, opt-in product with its own, narrower data flow — see "Want this on every pull request" below.

Options

Mirrors the underlying Python engine's own flags:

fixprove check [path] [--requirements <file>] [--cache-dir <dir>]
                       [--timeout <seconds>] [--package-json <file>] [--json]

Exit codes: 0 clean, 1 unresolved symbol(s) found, 2 usage/setup error (including "Python engine not installed"), 127 no Python interpreter found at all.

Want this on every pull request, without installing anything?

The FixProve GitHub App runs this exact check as a blocking status on your PRs. Analysis runs in your CI (see the GitHub Actions workflow template it publishes) — only specific finding fragments (file paths, line numbers, the unresolved expression) transit our endpoint, encrypted and never persisted, to post the check annotation; see the Privacy Policy for the full description. This CLI is the same deterministic core, for local/self-hosted use.

License

MIT — see LICENSE. This package is the open-core component of FixProve; /app and /web in this monorepo are proprietary (see root NOTICE.md).