Bluebird is a fully featured promise library for client and server JavaScript with focus on innovative features and performance.
After Node.js added native support for promises, are there still reasons to use libraries like Q or BlueBird? For …
javascript node.js promise q bluebirdSo, I want my first level catch to be the one that handles the error. Is there anyway to propagate …
javascript node.js promise bluebirdAs a node programmer. I'm used to use "nodebacks" for handling errors in my code: myFn(param, function(err, data) { …
javascript node.js error-handling promise bluebirdBluebird offers a finally method that is being called whatever happens in your promise chain. I find it very handy …
javascript promise bluebirdI have a promise that returns data and I want to save that in variables. Is this impossible in JavaScript …
javascript promise ecmascript-6 bluebird es6-promiseI've been only using bluebird for a few days but I want to go over all my old code and …
javascript node.js promise bluebirdI'm using bluebird and I see two ways to resolve synchronous functions into a Promise, but I don't get the …
javascript promise bluebirdBluebird promisifaction is a little magic, and request is quite a mess (it's a function which behaves as an object …
javascript promise bluebirdI see the docs for Bluebird's finally but I still don't quite understand the difference vs. then. To be clear: …
javascript node.js promise bluebirdI have trouble understanding the difference between putting .catch BEFORE and AFTER then in a nested promise. Alternative 1: test1Async(10).…
javascript node.js promise bluebird