Hacker News new | ask | show | jobs
by treenyc 3692 days ago
What about this nodejs async,

https://github.com/caolan/async

May be a replacement until the async is implemented in V8

2 comments

It's not a replacement at all, and has almost nothing in common with what is discussed here (except the name).
That's the most common node flow control library, and it's awesome, but it's still built on callbacks. With ES2016 you can have an async function return a value you can assign to with =.

Or, short ver: less indentation.