Top "Rsvp-promise" questions

The promise library of the [tag:rsvp.

Node.js - call a method after another method is fully executed

I have 2 simple methods: function do(x,y){ if(x){ XHR1().success(); } if(y){ XHR2().success(); } } function done(){ return something; } …

javascript node.js asynchronous promise rsvp-promise
How to run a promise-then chain using map or reduce on an arbitrary number of chain elements?

I'm stuck on the following: A script is returning an arbitrary number n or array, like this: [["a"], ["b"], ["c"], ["…

javascript asynchronous mapreduce promise rsvp-promise