Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

retry-if-fails

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

retry-if-fails

Utility module for retrying

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
Maintainers
1
Weekly downloads
 
Created
Source

Current Version NPM Minified size Github Code Size Downloads/Year Issues License Contributors

NPM

Retry-If-Fails

This module helps to you to manage retries of function execution

Usage

// 1. Import module 
const retrier = require('retry-if-fails');

// 2. Define your function
const flipCoin = () => {
  return Math.random() > 0.5 ? 'Heads' : 'Tails';
}

// 3. Define your test function
const resultChecker = coinFlip => {
  console.log(coinFlip);
  return coinFlip === 'Heads'
}

// 4. Run the Retrier
const retries = 3;
retrier(flipCoin, resultChecker, retries)
.then( result => console.log(`Finally! ${result}`))
.catch( lastResult => console.log(`Error: Last result was: ${lastResult}`));

The retrier function returns a Promise, and it will execute until it hits the desired result or it' will return the last failed result.

Wait between tries

You can also set a wait time between tries with the optional last parameter. This can be useful when your functions consume a remote resource.

const retries = 3;
const wait = 200; // 200 milliseconds
retrier(flipCoin, resultChecker, retries, wait);

Example fetching remote API

const retrier = require('retry-if-fails');
const fetch = require('node-fetch');

const fetchResource = () => {
  return fetch('http://domain.com/resource/12345', { timeout: 3000 })
    .catch(err => console.log(err));
}

const resultChecker = response => {
  return response && response.status == 200;
}

const retries = 3;
const wait = 1000;
retrier(fetchResource, resultChecker, retries, wait)
  .then( res => res.json())
  .then( object => console.log(object))
  .catch( lastResponse => console.log(`It fails. Last result was: ${lastResponse}`));


Using async await to get result

const foo = async () =>{
  try{
    const result = await retrier(process, checkCorrect, retries, wait);
    console.log(`It's correct! ${result}`);
  }
  catch(lastResult){
    console.log(console.log(`It fails. Last result was: ${lastResult}`))
  }
};

Keywords

FAQs

Package last updated on 18 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc