
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@chymz/promise-utils
Advanced tools
Some useful functions for promises
Install :
npm install @chymz/promise-utils
When you call all()
, props()
, series()
or seriesProps()
returned promise
have an available progress()
method to listen progress of promises executions
Usage :
import PromiseUtils from '@chymz/promise-utils';
PromiseUtils.all([
promise(),
promise(),
promise()
])
.progress((current, total) => {
let percent = current / total * 100;
})
.then(results => {
// ...
})
props()
Instead of using an array with Promise.all()
you can pass an object to
PromiseUtils.props()
Usage :
import PromiseUtils from '@chymz/promise-utils';
PromiseUtils.props({
one: promise(),
two: promise()
})
.then(results => {
/*
results object is like :
{
one: 'result of first promise',
two: 'result of second promise'
}
*/
})
series()
@todo : description (see tests/index.js
)
seriesProps()
@todo : description (see tests/index.js
)
If you don't want to use native Promise class, you can do this :
import Bluebird from 'bluebird';
import PromiseUtils from 'promise-utils';
PromiseUtils.Promise = Bluebird;
// or simply :
global.Promise = Bluebird;
series()
& seriesProps()
description/samplesSee LICENSE
file
FAQs
Promise utils functions
The npm package @chymz/promise-utils receives a total of 0 weekly downloads. As such, @chymz/promise-utils popularity was classified as not popular.
We found that @chymz/promise-utils 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.