Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@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
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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.