
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
promise-all-settled-by-key
Advanced tools
[](https://travis-ci.org/Dobby89/promise-all-settled-by-key) [](https://www.npmjs.com/package/pro
Returns a promise that resolves after all of the given promises have either resolved or rejected, with an object that contains the resolved status and value of each promise.
Promise.allSettled() returns promises in an array with no index or key, so you can't track what happened to which promise.
However, this package makes it possible to determine the outcome and value of specific promises because it returns each promise by key.
npm install promise-all-settled-by-key
import promiseAllSettledByKey from 'promise-all-settled-by-key';
const promiseMap = {
theNumberThree: Promise.resolve(3),
getFoo: new Promise((resolve, reject) => setTimeout(reject, 100, 'foo error'),
nope: new Promise((resolve, reject) => setTimeout(reject, 100))
}
promiseAllSettledByKey(promiseMap).then(settled => {
console.log(settled);
});
// Expected output
// {
// theNumberThree: { resolved: true, value: 3 }
// getFoo: { resolved: false, value: 'foo error' },
// nope: { resolved: false, value: undefined }
// }
You can set { onlyResolved = true }
to return only the resolved promises.
promiseAllSettledByKey(promiseMap, { onlyResolved: true }).then(settled => {
console.log(settled);
});
// Expected output
// {
// theNumberThree: { resolved: true, value: 3 }
// }
You can set { onlyRejected = true }
to return only the rejected promises.
promiseAllSettledByKey(promiseMap, { onlyRejected: true }).then(settled => {
console.log(settled);
});
// Expected output
// {
// getFoo: { resolved: false, value: 'foo error' },
// nope: { resolved: false, value: undefined }
// }
FAQs
[](https://travis-ci.org/Dobby89/promise-all-settled-by-key) [](https://www.npmjs.com/package/pro
We found that promise-all-settled-by-key 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.