
Company News
Socket Named Top Sales Organization by RepVue
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.
Like
Promise.all()but forMapandObject
Useful when you need to run multiple promises concurrently and keep track of the fulfilled values by name.
npm install p-props
import pProps from 'p-props';
import got from 'got';
const fetch = async url => {
const {body} = await got(url);
return body;
};
const sites = {
ava: fetch('https://avajs.dev'),
todomvc: fetch('https://todomvc.com'),
github: fetch('https://github.com'),
foo: 'bar'
};
console.log(await pProps(sites));
/*
{
ava: '<!doctype …',
todomvc: '<!doctype …',
github: '<!doctype …',
foo: 'bar'
}
*/
Returns a Promise that is fulfilled when all promises in input and ones returned from mapper are fulfilled, or rejects if any of the promises reject. The fulfilled value is the same as input, but with a fulfilled version of each entry value, or the fulfilled value returned from mapper, if defined.
Type: Map | object
Resolves entry values that are promises. Other values are passed through.
Type: Function
Receives the current value and key as parameters. If a value is a Promise, mapper will receive the value this Promise resolves to. Expected to return a Promise or value.
Type: object
See the p-map options.
Like Promise.allSettled() but for Map and Object.
import {pPropsAllSettled} from 'p-props';
import got from 'got';
const fetch = async url => {
const {body} = await got(url);
return body;
};
const sites = {
ava: fetch('https://avajs.dev'),
todomvc: fetch('https://todomvc.com'),
github: fetch('https://github.com'),
foo: 'bar'
};
console.log(await pPropsAllSettled(sites));
/*
{
ava: { status: 'fulfilled', value: '<!doctype …' },
todomvc: { status: 'fulfilled', value: '<!doctype …' },
github: { status: 'fulfilled', value: '<!doctype …' },
foo: { status: 'fulfilled', value: 'bar' }
}
*/
Returns a Promise that is fulfilled when all promises in input and ones returned from mapper are settled. The fulfilled value is the same as input, but with a settled version of each entry value, or the settled value returned from mapper, if defined.
Type: Map | object
Resolves entry values that are promises. Other values are passed through.
Type: Function
Receives the current value and key as parameters. If a value is a Promise, mapper will receive the value this Promise resolves to. Expected to return a Promise or value.
Type: object
See the p-map options.
FAQs
Like `Promise.all()` but for `Map` and `Object`
The npm package p-props receives a total of 70,182 weekly downloads. As such, p-props popularity was classified as popular.
We found that p-props demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

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.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.