Top "Bluebird" questions

Bluebird is a fully featured promise library for client and server JavaScript with focus on innovative features and performance.

Promises with fs and bluebird

I'm currently learning how to use promises in nodejs so my first challenge was to list files in a directory …

javascript node.js asynchronous fs bluebird
Bluebird warning "A promise was created in a handler but was not returned from it"

I get the warning about not returning a created promise from Bluebird and I do not understand why and how …

node.js express bluebird
Promises not working on IE11

I'm new to Promises on javascript so I hope some can help me with this issue. Problem: Promise not being …

javascript typescript promise bluebird es6-promise
Bluebird promises - each function

Thank in advance for the help. While using Bluebird promises, I have a series of promises running. During the last …

node.js promise sails.js bluebird
How to use the bluebird concurrency option for the map function

I am trying to use bluebird's map function with the built-in concurrency control. I want to retrieve a list of …

concurrency promise bluebird
Mongoose with Bluebird promisifyAll - saveAsync on model object results in an Array as the resolved promise value

I'm using bluebird's promisifyAll with mongoose. When I call saveAsync (the promisified version of save) on a model object, the …

node.js mongoose promise bluebird
How promisifyAll works, or what are the requirements for it work?

In a promise library bluebird have function promisifyAll or other similar libraries that claim to convert async functions with callback …

javascript node.js npm bluebird
Passing Variables Through a Promise Chain

Is there a better way to do this? let foo; return functionA().then(result => { foo = result; return functionB(); }).then(…

javascript ecmascript-6 bluebird
Convert promise to bluebird

I found an existing library that uses promises, however it doesn't use bluebird. The library functions don't come with all …

javascript node.js promise bluebird
What is the correct way of using Bluebird for Mongoose promises?

I've been reading documentaion and articles and everyone seems to describe a different way about using Mongoose and Bluebird together. …

mongoose bluebird