![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@keeex/axios-concurrency
Advanced tools
Gives easy control of how many requests an axios instance makes concurrently. Useful for dealing with rate limiting. Implemented using interceptors.
Get control of concurrent requests of any axios instance. Implemented using axios interceptors
This project was forked by KeeeX in order to fix a few issues and keep dependencies updated.
$ npm install axios-concurrency
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()
MIT
FAQs
Gives easy control of how many requests an axios instance makes concurrently. Useful for dealing with rate limiting. Implemented using interceptors.
The npm package @keeex/axios-concurrency receives a total of 2 weekly downloads. As such, @keeex/axios-concurrency popularity was classified as not popular.
We found that @keeex/axios-concurrency demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.