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

@absuitecore/quickbench

v1.4.0

Published

LLM and service benchmarking with percentile latency, throughput and regression detection.

Readme

@absuitecore/quickbench

LLM and HTTP service benchmarking with percentile latency, throughput and statistically grounded regression detection.

What it does

  • Providers — Ollama, OpenAI, Anthropic and a generic HTTP provider for benchmarking your own services.
  • Correct percentiles — nearest-rank, so every reported number is a value that was actually measured. No interpolation.
  • Warmup — warmup iterations are discarded so results reflect steady state, not cold caches.
  • True concurrency — a fixed worker pool keeps exactly N requests in flight rather than running lockstep batches.
  • Regression detection — Welch's t-test, which does not assume equal variance, because a regressed build is often both slower and noisier.
  • Reports — JSON, Markdown (for PR comments) and CSV (for spreadsheets).

Running

CAPKIT_HMAC_SECRET=$(openssl rand -hex 32) pnpm --filter @absuitecore/quickbench dev

API

# Benchmark a local model
curl -X POST localhost:8083/run -H "Authorization: Bearer $TOKEN" \
  -H 'Content-Type: application/json' \
  -d '{"provider":"ollama","model":"llama3","testRuns":20,"warmupRuns":3,"concurrency":4}'

# Benchmark any HTTP service
curl -X POST localhost:8083/run -H "Authorization: Bearer $TOKEN" \
  -H 'Content-Type: application/json' \
  -d '{"provider":"http","url":"http://localhost:8081/health","testRuns":50}'

curl -H "Authorization: Bearer $TOKEN" localhost:8083/run/$JOB_ID
curl -H "Authorization: Bearer $TOKEN" "localhost:8083/run/$JOB_ID/report?format=markdown"
curl -H "Authorization: Bearer $TOKEN" "localhost:8083/history?format=csv"

# Did this change make things slower?
curl -H "Authorization: Bearer $TOKEN" \
  "localhost:8083/compare?baseline=$BEFORE&candidate=$AFTER"

Required scopes: bench:run, bench:read.

/compare returns a verdict of regression, improvement or no significant change, so it can gate a deploy directly.

Configuration

| Variable | Default | Purpose | |---|---|---| | QUICKBENCH_PORT | 8083 | Listen port | | QUICKBENCH_OLLAMA_URL | http://localhost:11434 | Ollama endpoint | | OPENAI_API_KEY | unset | Enables the OpenAI provider | | ANTHROPIC_API_KEY | unset | Enables the Anthropic provider | | CAPKIT_HMAC_SECRET | — | Shared with CapKit to validate tokens |

Run counts are clamped (max 500 runs, concurrency 32) so a single request cannot ask for unbounded work.

Security

The http provider takes its URL from the request body, so a bench:run scope would otherwise also mean send traffic wherever I say. Link-local addresses are refused169.254.0.0/16 and IPv6 fe80::/10, plus metadata.google.internal by name — because that is where every major cloud puts instance metadata and it is never a benchmark target.

Redirects are checked hop by hop. Checking only the URL you submitted is no protection at all against a 302, which was demonstrated rather than assumed. The metadata endpoints are refused regardless of range — AWS serves IMDS over IPv6 at fd00:ec2::254, which is unique-local and would otherwise have been allowed.

Private and loopback addresses still work. Benchmarking your own service is the entire point of this provider, and a guard that broke it would be switched off.

Known limitations

Job history is in memory and capped at 100 jobs. Results do not survive a restart; export to CSV to retain them.


Part of ABSuite

The black box for AI systems — record what happened, prove it happened, preserve the evidence.

| | | |---|---| | Source | https://github.com/iamGodofall/ABSuite-core | | Verify a trace in your browser | https://iamgodofall.github.io/ABSuite-core/verify.html | | Getting started | GETTING-STARTED.md | | Reporting a vulnerability | SECURITY.md — never a public issue | | What this project refuses to build | PRINCIPLES.md |

Published from CI with a signed Sigstore provenance attestation — check it with npm audit signatures rather than taking our word for it.

MIT licensed.