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

node-fetch-retry

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-fetch-retry

Retry library for node-fetch

  • 2.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

node-fetch-retry npm version NPM Travis Status license

node-fetch-retry is a wrapper library that add retry over node-fetch.

How to install?

npm i --save node-fetch-retry

How to use?

The following code shows an example that does not have retry:

const fetch = require('node-fetch');
let res = await fetch('https://google.com', { method: 'GET' })

The code down bellow shows how node-fetch-retry works:

const fetch = require('node-fetch-retry');
let res = await fetch('https://google.com', { method: 'GET', retry: 3 })

A pause (in milliseconds) can be added between retry attempts using the pause option. Pause values < 0 are treated as 0.

The following example waits 1 seconds (1000 ms) between retry attempts.

const fetch = require('node-fetch-retry');
let res = await fetch('https://google.com', { method: 'GET', retry: 3, pause: 1000 })

If you want to add callback that will be called between the retries. The callback is invoked BEFORE any (optional) pauses.

let opts = {
    method: 'GET', 
    retry: 3,
    callback: retry => { console.log(`Trying: ${retry}`) }
}

const fetch = require('node-fetch-retry');
let res = await fetch('https://google.com', opts)

If you would like to silence pause messages in your console include a silent boolean in your options.

let opts = {
    method: 'GET',
    retry: 3,
    pause: 1000,
    silent: true
}

Keywords

FAQs

Package last updated on 10 Sep 2022

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