Last active
January 6, 2024 04:18
-
-
Save stephantabor/833a8cd26fc37b420c75 to your computer and use it in GitHub Desktop.
Bluebird .each vs .mapSeries vs .map
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Promise = require('bluebird'); | |
var funcs = Promise.resolve([500, 100, 400, 200].map((n) => makeWait(n))); | |
funcs | |
.each(iterator) // logs: 500, 100, 400, 200 | |
.then(console.log) // logs: [ [Function], [Function], [Function], [Function] ] | |
funcs | |
.mapSeries(iterator) // logs: 500, 100, 400, 200 | |
.then(console.log) // logs: [500, 100, 400, 200] | |
funcs | |
.map(iterator) // logs: 100, 200, 400, 500 | |
.then(console.log) // logs: [500, 100, 400, 200] | |
function iterator(f) { | |
return f() | |
} | |
function makeWait(time) { | |
return function () { | |
return new Promise((resolve, reject) => { | |
setTimeout(() => { | |
console.log(time); | |
resolve(time); | |
}, time); | |
}); | |
}; | |
} |
Yo, can I in current promise get data which was return in previous Promise?
Thank you so much for this example
Really Helpful. Thanks a ton!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great example. Very insightful.