Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
min-promise
Advanced tools
Small and Clean Promise 100% compliant with Promises/A+ Spec
npm i min-promise
Support Both ES2015 Promise
and Promises/A+
100% compliant with Promises/A+ Spec, and listed in implements
Check all tests in promises-aplus-tests
Support basic thenable in Promises/A+ Spec
Support ES2015 promise
new Promise()
in ES2015Promise.all()
in ES2015Promise.race()
in ES2015Support .caught
like .catch
for ES3 support, inspired by bluebird
jQuery style or CommonJS Promises/A
Deferred object
Promise is subset of Deferred
var $ = require('min-promise/jquery') // export `Deferred` and `when`
// $.Deferred
var dfd = $.Deferred()
dfd.done(function(v1, v2) {
console.log(v1) // 1
console.log(v2) // 2
})
Promise.delay(50).then(function() {
dfd.resolve(1, 2)
})
// $.when
var d1 = $.Deferred()
var d2 = $.Deferred()
var d3 = $.Deferred()
$.when(d1, d2, d3).done(function(v1, v2, v3) {
console.log([v1, v2, v3]) // [undefined, 'abc', 123]
})
d1.resolve()
d2.resolve('abc')
d3.resolve(123)
setTimeout
in promise style
Promise.delay(ms)
.delay(ms)
FAQs
Small and Clean Promise 100% compliant with Promises/A+ Spec
The npm package min-promise receives a total of 11 weekly downloads. As such, min-promise popularity was classified as not popular.
We found that min-promise 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
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.