Async.js v2.0.0 released
github.com
Async.js v2.0.0 released
1–3 of 3 posts
Re: Async.js v2.0.0 released
#2So why Async.js over Promises or Generators at this point?
Re: Async.js v2.0.0 released
#3So why Async.js over Promises or Generators at this point?
Promises are great for prototyping, but have significant overhead (http://thanpol.as/javascript/promises-a-performance-hits-you...) for some high performance APIs it may be advisable to use async.
Async also supports nodejs callback patterns which can reduce the need for wrappers (promisify)