@keeex/axios-concurrency

1.0.6 • Public • Published

Axios Concurrency Manager

Get control of concurrent requests of any axios instance. Implemented using axios interceptors

Fork information

This project was forked by KeeeX in order to fix a few issues and keep dependencies updated.

Installing

$ npm install axios-concurrency

Example

const { ConcurrencyManager } = require("axios-concurrency");
const axios = require("axios");

let api = axios.create({
  baseURL: "http://mypublicapi.com"
});

// a concurrency parameter of 1 makes all api requests secuential
const MAX_CONCURRENT_REQUESTS = 5;

// init your manager.
const manager = ConcurrencyManager(api, MAX_CONCURRENT_REQUESTS);

// requests will be sent in batches determined by MAX_CONCURRENT_REQUESTS
Promise.all(manyIds.map(id => api.get(`/test/${id}`)))
  .then(responses => {
    // ...
  });

// to stop using the concurrency manager.
// will eject the request and response handlers from your instance
manager.detach()

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i @keeex/axios-concurrency

Homepage

keeex.me/oss

Weekly Downloads

1

Version

1.0.6

License

MIT

Unpacked Size

4.65 kB

Total Files

4

Last publish

Collaborators

  • keeex_jenkins
  • marc-keeex
  • cley_faye