title | category | layout | weight | updated |
---|---|---|---|---|
bluebird.js |
JavaScript libraries |
2017/sheet |
-1 |
2017-09-08 |
Also see the promise cheatsheet and Bluebird.js API (github.com).
promise
.then(okFn, errFn)
.spread(okFn, errFn) // *
.catch(errFn)
.catch(TypeError, errFn) // *
.finally(fn)
.map(function (e) { ··· }) // *
.each(function (e) { ··· }) // *
Those marked with *
are non-standard Promise API that only work with Bluebird promises.
.then(function () {
return [ 'abc', 'def' ]
})
.spread(function (abc, def) {
···
})
{: data-line="4"}
Use Promise.spread
Promise.join(
getPictures(),
getMessages(),
getTweets(),
function (pics, msgs, tweets) {
return ···
}
)
{: data-line="1"}
Use Promise.join
- Promise.all([p]) - expect all to pass
- Promise.some([p], count) - expect
count
to pass - Promise.any([p]) - same as
some([p], 1)
- Promise.race([p], count) - use
.any
instead - Promise.map([p], fn, options) - supports concurrency
Promise.all([ promise1, promise2 ])
.then(results => {
results[0]
results[1]
})
// succeeds if one succeeds first
Promise.any(promises)
.then(results => {
})
{: data-line="1,8"}
Promise.map(urls, url => fetch(url))
.then(···)
{: data-line="1"}
Use Promise.map to "promisify" a list of values.
Promise.props({
photos: get('photos'),
posts: get('posts')
})
.then(res => {
res.photos
res.posts
})
{: data-line="1"}
Use Promise.props.
function getPhotos() {
return Promise.try(() => {
if (err) throw new Error("boo")
return result
})
}
getPhotos().then(···)
{: data-line="2"}
Use Promise.try.
var readFile = Promise.promisify(fs.readFile)
var fs = Promise.promisifyAll(require('fs'))
{: data-line="2"}
See Promisification.
User.login = Promise.method((email, password) => {
if (!valid)
throw new Error("Email not valid")
return /* promise */
})
{: data-line="1"}
See Promise.method.
User.login = Promise.coroutine(function* (email, password) {
let user = yield User.find({email: email}).fetch()
return user
})
{: data-line="1"}
See Promise.coroutine.