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 🙏

© 2024 – Pkg Stats / Ryan Hefner

robust-http-fetch

v1.1.14

Published

Redo the http request when timeout or failed, aim at providing resilience over plain one-off fetch request by doing retry delayed/failed requests

Downloads

21

Readme

Robust Http Fetch

This robust-http-fetch is a light-weight and 100%-test-coverage javascript utils helping to make robust http fetch request.

The underlying fetch will be delegated either to window.fetch when use in browser or node-fetch when use in node server.

It makes request to the provided url, if response is not received in timely manner(init.timeout config below) or failed (fragile network etc), it will fire another request to race(up to init.maxRequests requests to fire if none of them are well resolved).

Request waits upto init.timeout milliseconds for response before sending a retry, if more than one request are still in-flight, then they are racing, the earliest good response will be resolved with and returned. Details refer to usage section in this page.

Caveats: only use this utils when your request is idempotent, for example GET, no matter how many times calling GET, should have same result and data integrity still maintained, likewise for DELETE. In case of POST/PUT, make sure your server side to maintain the data integrity, for example backend to perform checking if previous requests have completed then abort duplicated requests etc.

see also in a github page: https://gaoqing.github.io/robust-http-fetch/

Installation

Use the package manager NPM to install robust-http-fetch.

npm install robust-http-fetch

Usage

Usage is as simple as below, can also refer to tests in end2end tests or unit tests)

 const robustHttpFetch = require('robust-http-fetch'); 

 const url = "https://postman-echo.com/post";
 const body = {hello: 'world'};

 /**
 * below input arguments for demonstration only
 * @input url, required, the resource destination
 * @input init object, required, sample properties
 *   {timeout}, required, below example will wait 3000ms before firing retry request
 *   {maxRequests}, required, below example upto 3 requests to fire in case previous requests delayed or not well resolved
 *   {method/body/headers}...and more, on demand properties, usage refer to `window.fetch`(init config)/`node-fetch`(options config)
 * @input optional function, any function accept a string argument, below example, use console.log 
 *
 * @return a promise resolved with a positive result or a rejected promise if eventually failed
 **/    
const resultPromise = robustHttpFetch(url, {
             timeout: 3000,
             maxRequests: 3, 
             method: 'POST',
             body: JSON.stringify(body),
             headers: {'Content-Type': 'application/json'}
         },
         console.log
);   


//do your stuff with this promise as usual, for example
resultPromise
    .then(res => res.json())
    .then(data => console.log(data));

Arguments:

const robustHttpFetch = require('robust-http-fetch'), it is a javascript function to use, which accept 3 parameters as followings

| Parameter | Required | Type | Description | | :------------------------ |:-------------:|:-------------: | :-------------| | url | true |string | The resource destination url this request will send to | init | true |object | 2 properties are MANDATORY: 'timeout' to time-box a single request and 'maxRequests' to limit the total number of requests to attempt. Besides those 2, it can have on-demand properties from 'init' parameter of window.fetch or 'options' parameter of node-fetch. Please refer to link 'init' of window.fetch or 'options' of node-fetch | optLogger | false |function |Optional, if any, will get called with a single string parameter to give small hints when making request

Try

To do a quick try, few steps to load up the module and execute a test:

Step 1: git clone https://github.com/gaoqing/robust-http-fetch.git Step 2: cd robust-http-fetch/test/node-test Step 3: npm run test

You will see some output in the console log showing some request have been made.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT