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

@bybrave/retry2

v1.0.0

Published

Maintained fork of retry — abstraction for exponential-backoff retries, with bundled TypeScript types, an Infinity-retries fix (#84), getTimeout() (#73), and ESM

Readme

@bybrave/retry2

Maintained, drop-in fork of retry — an abstraction for exponential-backoff retries of failing operations.

The original has had no release since 2021 (0.13.1) while still pulling ~450M downloads/month, with types living in a separate @types/retry (~133M/month). This fork bundles the TypeScript types, fixes an infinite-retries hang, and ships ESM. The API is unchanged.

npm install @bybrave/retry2
const retry = require('@bybrave/retry2');        // CommonJS
import retry from '@bybrave/retry2';              // ESM (default)
import { operation, timeouts } from '@bybrave/retry2'; // ESM (named)

What's fixed

| Issue | Problem | Fix | |---|---|---| | — | Types shipped separately as @types/retry. | Types are bundled — no extra install. | | #83 | Under TypeScript 4.4+, import { timeouts } from 'retry' compiled to an indirect call and broke because timeouts() relied on this. | timeouts() calls createTimeout directly — no this, so named imports work everywhere. | | #84 | retries: Infinity built an infinite-length timeouts array — a hang / out-of-memory. | retries: Infinity is treated as "retry forever" without precomputing an infinite array. | | #73 | No way to know how long until the next retry (for logging like "will retry in 16s"). | New operation.getTimeout() returns the scheduled delay in ms. | | #93 | undefined option values overrode the defaults ({ retries: undefined } → 0 retries). | undefined values are ignored, so defaults stand. | | #65 | reset() left accumulated errors in place. | reset() also clears the error list. |

#60 (forever operations leaking errors) was already fixed in 0.13.1 and is verified by the tests here.

operation.getTimeout()

Returns the delay in milliseconds before the next scheduled attempt (or null before the first retry), so you can log it:

const op = retry.operation({ retries: 5 });
op.attempt(() => {
  doSomething((err) => {
    if (op.retry(err)) {
      console.warn(`request failed, retrying in ${op.getTimeout()}ms`);
      return;
    }
  });
});

Migration from retry

Replace the dependency and the import, and remove @types/retry from your devDependencies — the types are built in. Everything behaves the same, plus the fixes above.

Support

If this package saves you time, you can support maintenance:

Ko-fi Bitcoin

Bitcoin (BTC): bc1q37557q5jpeaxqydzwvf3jgj7zhnfpn2td3q40q

Credits & license

MIT, same as the original — see LICENSE. Based on node-retry by Tim Koschützki, Felix Geisendörfer and contributors.