What is p-some?
The p-some npm package allows you to wait for a specified number of promises to be fulfilled. It is useful when you need only a certain number of promises to resolve successfully, and you don't care about the rest.
What are p-some's main functionalities?
Wait for a specified number of promises to fulfill
This feature allows you to wait for a specified number of promises to be fulfilled. In this example, we have an array of promises, and we use p-some to wait for any 2 of them to resolve successfully. The result will be an array of the first 2 resolved values.
const pSome = require('p-some');
const promises = [
Promise.resolve(1),
Promise.resolve(2),
Promise.reject(new Error('error')),
Promise.resolve(3)
];
pSome(promises, { count: 2 }).then(values => {
console.log(values); // [1, 2]
});
Handle rejected promises
This feature demonstrates how p-some handles rejected promises. In this example, we have an array of promises with some of them being rejected. p-some will still wait for the specified number of promises to be fulfilled and will return the resolved values. If it cannot fulfill the count due to too many rejections, it will throw an error.
const pSome = require('p-some');
const promises = [
Promise.resolve(1),
Promise.reject(new Error('error1')),
Promise.reject(new Error('error2')),
Promise.resolve(2)
];
pSome(promises, { count: 2 }).then(values => {
console.log(values); // [1, 2]
}).catch(error => {
console.error(error);
});
Other packages similar to p-some
p-any
The p-any package waits for any promise to be fulfilled. It is similar to p-some but instead of waiting for a specified number of promises, it resolves as soon as any one of the promises resolves. This can be useful when you only need the first successful result.
p-all
The p-all package runs multiple promise-returning & async functions with optional concurrency control. It is different from p-some as it waits for all promises to be fulfilled, rather than a specified number. This is useful when you need to ensure all promises are resolved before proceeding.
promise-settle
The promise-settle package waits for all promises to settle (either fulfilled or rejected) and returns an array of their results. Unlike p-some, it does not stop at a specified number of fulfilled promises but instead provides the outcome of all promises. This is useful for getting a complete picture of all promise results.
p-some
Wait for a specified number of promises to be fulfilled
Useful when you need the fastest of multiple promises.
Install
$ npm install p-some
Usage
Checks 4 websites and logs the 2 fastest.
const got = require('got');
const pSome = require('p-some');
pSome([
got.head('github.com').then(() => 'github'),
got.head('google.com').then(() => 'google'),
got.head('twitter.com').then(() => 'twitter'),
got.head('medium.com').then(() => 'medium')
], {count: 2}).then(([first, second]) => {
console.log(first, second);
});
API
pSome(input, options)
Returns a Promise
that is fulfilled when count
promises from input
are fulfilled. The fulfilled value is an Array
of the values from the input
promises in the order they were fulfilled. If it becomes impossible to satisfy count
, for example, too many promises rejected, it will reject with an AggregateError
error.
input
Type: Iterable<Promise|any>
options
Type: Object
count
Required
Type: number
(minimum 1
)
filter
Type: Function
Receives the value resolved by the promise. Used to filter out values that doesn't satisfy a condition.
pSome.AggregateError
Exposed for instance checking.
Related
License
MIT © Sindre Sorhus