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

@gilangjavier/headerbackoff

v0.1.0

Published

Parse Retry-After and rate limit headers into deterministic retry plans.

Readme

headerbackoff

Parse Retry-After and common rate-limit headers into a deterministic retry plan.

headerbackoff helps you turn noisy HTTP throttling responses into one simple answer: how long should I wait, and how fast can I keep sending requests?

Why this exists

Different APIs expose rate limits differently:

  • Retry-After
  • RateLimit-Remaining
  • RateLimit-Reset
  • X-RateLimit-*

Most teams end up re-implementing the same parsing logic in queue workers, cron jobs, scripts, and SDK wrappers.

headerbackoff gives you a tiny library and CLI for that job.

Install

npm i @gilangjavier/headerbackoff

Or run it directly:

npx @gilangjavier/headerbackoff inspect --header "Retry-After: 17"

CLI usage

headerbackoff inspect [--header "Key: Value"]... \
  [--headers-file headers.json] \
  [--stdin] \
  [--format text|json] \
  [--buffer-ms 0] \
  [--fallback-wait-ms 1000]

Example: 429 with Retry-After

headerbackoff inspect --header "Retry-After: 17"

Example: reset-window throttling

headerbackoff inspect \
  --header "RateLimit-Remaining: 0" \
  --header "RateLimit-Reset: 42" \
  --format json

Example: inspect a captured header blob

cat response-headers.txt | headerbackoff inspect --stdin

Library API

import { createBackoffPlan, parseRateLimitHeaders } from "@gilangjavier/headerbackoff";

const snapshot = parseRateLimitHeaders({
  "Retry-After": "12",
  "RateLimit-Remaining": "0",
  "RateLimit-Reset": "15",
});

const plan = createBackoffPlan(snapshot.raw, { bufferMs: 250 });

console.log(plan.waitMs); // 15250
console.log(plan.reason); // rate-limit-reset

For agents

  • Use --format json so your workflow can read waitMs, reason, retryAt, and minSpacingMs.
  • If waitMs > 0, pause that worker or queue until retryAt.
  • If minSpacingMs is present, you can spread remaining requests more evenly across the reset window.

Example:

headerbackoff inspect \
  --header "RateLimit-Remaining: 3" \
  --header "RateLimit-Reset: 9" \
  --format json

For humans

  • Drop this into shell scripts, queue workers, or custom SDK wrappers.
  • Prefer feeding real response headers into inspect instead of hardcoding wait rules per provider.
  • Add a small --buffer-ms if the provider's reset windows are a bit optimistic.

Example:

headerbackoff inspect \
  --header "Retry-After: Wed, 18 Mar 2026 03:00:10 GMT" \
  --buffer-ms 250

Output fields

  • waitMs: recommended wait before the next request
  • retryAt: ISO timestamp for the next safe retry
  • reason: why the wait was chosen (retry-after, rate-limit-reset, remaining-zero, or none)
  • limited: whether the current response indicates you should back off
  • minSpacingMs: suggested minimum spacing between remaining calls in the current window

GitHub Actions example

- name: Inspect throttled response headers
  run: |
    npx @gilangjavier/headerbackoff inspect \
      --header "RateLimit-Remaining: 0" \
      --header "RateLimit-Reset: 30" \
      --format json

License

MIT