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

@reticlehq/engine

v3.2.0

Published

The rules that decide a verdict: read what happened in a running app and say whether the declared consequence held. No browser, no daemon, no command line - an implementation of the OpenVerification specification you can use on its own.

Readme

@reticlehq/engine

The rules that decide a verdict.

Give it what happened in a running app — the clicks, the network calls, the state changes, the console — and a statement about what should have followed, and it answers whether that statement held. That is all it does. There is no browser here, no server, no command line and no storage.

Why it is on its own

Reticle's whole claim is that a verdict means something. The part that makes that claim is small and depends on almost nothing, so it should be possible to take it without taking a daemon you did not ask for. Somebody implementing the OpenVerification specification for a different kind of environment — a phone, a game, a terminal — needs these rules and none of the machinery around them.

What is inside

  • events/ — reading a window of what happened and answering a question about it. Did the request go out? Did the page settle? Did anything contradict anything else?
  • honesty/ — the checks on the answer itself. Was the evidence good enough to say yes? Did we watch the same channel we acted on, which would prove nothing? Is "unknown" the honest answer?

The four answers

A verdict is one of four things, and the last two matter as much as the first two:

| Answer | What it means | | ---------- | --------------------------------------------------------------------------------- | | yes | The declared consequence happened, and the evidence is independent of the action. | | no | It did not happen. | | unknown | Nobody could tell. The evidence was missing, stale, or came from the wrong place. | | no-fault | Nothing was declared, so there was nothing to prove. |

unknown is a real answer, not a rounding error. A tool that turns "I could not see" into "yes" is worse than no tool, because it costs you the one thing you came for.

What it needs from you

Two things, and both are optional:

  • somewhere to write down a rule that could not be run at all
  • a way to keep a re-check attached to the call that asked for it

Leave them out and the rules still work — you lose a log line, never a verdict. You hand them in on the object you pass; the rules never go looking. See window/engine-host.ts.