0.1.1 • Published 5 years ago

@beyonk/promise-retry v0.1.1

Weekly downloads
116
License
MIT
Repository
-
Last release
5 years ago

Promise Retry

js-standard-style CircleCI

Retryable promise utility for the browser

Why

There are a few similar modules out there, mostly abandonware, few with tests.

Usage

Install the module:

npm install --save-dev @beyonk/promise-retry

Use it in your code:

// defaults
const retries = 5
const intervalBetweenRetries = 1000

const myFunction = async function () { ...blah }

retry(
  myFunction,
  retries,
  intervalBetweenRetries
)

Running Tests

npm test

Credits