Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 591 Bytes

File metadata and controls

24 lines (17 loc) · 591 Bytes

Retry Backoff

npm install @ferrow/retry-backoff

CI

Exponential backoff with jitter for retrying async operations.

const retry = new RetryBackoff({ maxAttempts: 3, baseDelay: 100 });
const result = await retry.execute(() => unreliableAPI());

Features

  • Exponential backoff
  • Jitter

License: MIT

Sponsored by Ferrow


Part of the ferrow-toolkit collection · Sponsored by Ferrow