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

@shrinivas-sn/verify-claims

v0.1.2

Published

Attach the proof to a doc claim, then check it hasn't gone false.

Readme

verify-claims

Your docs make factual claims. Nothing checks them. This does.

📦 Published: @shrinivas-sn/verify-claims on npm. See docs/README.md for build history and status.


Status

This section checks itself — run verify-claims README.md and find out if these are still true.

Build: passes

Lint: clean

Tests: pass

The problem

A doc says:

Lint: 0 errors

True the day it was written. Is it true now? Nobody knows — the only way to find out is to stop and run the linter, so mostly nobody does. The sentence quietly goes false and sits there being trusted.

That is not hypothetical. From the project this tool came out of:

"Earlier notes saying 'the tables are empty, migrate freely' are obsolete — re-check row counts before any destructive migration."

The note was true when written. By the time it was read again, the database held real records. It was one step from wiping them.

The idea

Attach the proof to the claim:

<!-- claim: npm run lint -->
Lint: **0 errors**

Then run it:

verify-claims "docs/**/*.md"

It runs each command, reports which claims have gone false, and exits non-zero so CI fails. An HTML comment renders as nothing on GitHub, so docs stay readable to people who have never heard of this tool.

Before: your docs are notes you hope are still true. After: your docs tell you when they stop being true.

Why not an existing tool

Tools in this space (Fiberplane Drift, doc-drift-guard, GitBook) answer "has the code this text points at changed?" by parsing. That cannot answer "0 errors" — only running the linter can. markdown-doctest has not shipped in over 2,000 days and eslint-plugin-markdown is deprecated.

See docs/07-decision.md for the full reasoning, including where the case is weak.

Honest status

The evidence that this problem is real for its author is strong — it happened twice in one repo, and partial fixes had already been hand-built. The evidence that other developers want it is assumed, not gathered. No one has been interviewed and no issue threads have been counted.

This is being built primarily to learn to publish a production-grade npm package properly. That goal holds regardless of adoption. It is not being sold as more than that.

Planned scope for v1

In: parse claims from markdown · run the attached command · non-zero exit means the claim is false · a readable report · a CLI that fails CI.

Out: database checks · template drift · output matching · auto-fix · AI · config files · watch mode · plugins.

License

MIT