[nodejs] callback hell on steroid

2014-02-11 Thread Reza Razavipour
I have a node.js, express really, app that needs to make SOAP calls, asynchronously of course. In this case, I make a soap call and I get a count. Once i have the count, I have to loop and make a series of SOAP calls for each, this part you can think of this as async.series calls. I have used

Re: [nodejs] callback hell on steroid

2014-02-11 Thread Mikeal Rogers
http://callbackhell.com/ On Feb 11, 2014, at 10:42AM, Reza Razavipour reza.razavip...@gmail.com wrote: I have a node.js, express really, app that needs to make SOAP calls, asynchronously of course. In this case, I make a soap call and I get a count. Once i have the count, I have to loop