
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
p-some-first
Advanced tools
Like Promise.all/Promise.any but only returns the first resolved value.
import PCancelable from "p-cancelable";
import pSomeFirst from "p-some-first";
(async () => {
await pSomeFirst([
new PCancelable((resolve) => setTimeout(() => resolve(1), 1000)),
new PCancelable((resolve) => resolve(2)),
]);
// resolves to 1
await pSomeFirst([
new PCancelable((resolve, reject) => reject("error message")),
new PCancelable((resolve, reject) => reject(new Error("intentional"))),
new PCancelable((resolve, reject) => reject(42)),
]);
// rejects with ["error message", new Error("intentional"), 42]
await pSomeFirst(
[
new PCancelable((resolve, reject) => reject("error message")),
new PCancelable((resolve, reject) =>
reject(new Error("intentional"))
),
new PCancelable((resolve, reject) => reject(42)),
],
7
);
// resolves to the fallback value (7)
})();
See the tests for more examples.
Cancelable Promises SHOULD be used otherwise there is hardly any difference between using p-some-first and this:
Promise.allSettled([
Promise.reject(new Error("something")),
Promise.resolve(42),
]).then((rr) => {
return rr.find((r) => r.status === "fulfilled").value;
});
By using cancelable Promises, after one Promise resolves, all remaining Promises can be canceled and pSomeFirst will return without waiting for all promises to settle.
Cancelable Promises will also help to minimize any errant UnhandledPromiseRejectionWarnings.
Until JavaScript gets a way to cancel native Promises, you can use a library like p-cancelable or Bluebird to create cancelable Promises.
If cancelable Promises are not used (in a Node.js environment), a process warning will be emitted notifying you about this.
FAQs
Returns the first Promise in an iterable to resolve
We found that p-some-first demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.