Top "Q" questions

The Q.js JavaScript promise library.

Open window inside promise

We are using a promise lib Q and we encounter the following issue. window.open() is blocked by browser when …

javascript google-chrome promise q
Whats the difference between Q Promise library's .finally() and .done()?

What is the difference between using the Nodejs Q promise library's .finally() and .done() statements. For example whats the difference …

javascript node.js promise q
Stop memory leaks with recursive promises

How do I create a recursive chain of JavaScript Promises with the Q library? The following code fails to complete …

javascript recursion memory-leaks promise q
Why is fs.readFile returning a buffer?

I have referred to this question already. That is, I don't believe my problem lies in a misunderstanding of async. …

javascript node.js asynchronous q
async and Q promises in nodejs

I'm using the Q library and async library in nodejs. Here's an example of my code: async.each(items, cb, …

node.js asynchronous q node-async
q.js : Is it possible to know if a promise has resolved/rejected or not

In my scenario I return a promise when I'm making a request. In the end I resolve/reject the deferred …

promise q
Skipping promise chain after handling error

Using the https://github.com/kriskowal/q library, I'm wondering if it's possible to do something like this: // Module A …

javascript node.js promise q