Comment on Escape from Callback HellparentComments−ufo13yMy favourite example of this is loops. Its very annoying to put an async call inside the loop since you need to rewrite the loop as a recursive function.−rbrcurtis13yhttps://github.com/caolan/asyncOnce I started using the async library, all of these problems everyone is illustrating basically disappeared.
Comments
My favourite example of this is loops. Its very annoying to put an async call inside the loop since you need to rewrite the loop as a recursive function.
https://github.com/caolan/async
Once I started using the async library, all of these problems everyone is illustrating basically disappeared.