Y
Hacker News
new
|
ask
|
show
|
jobs
by
dexwiz
3627 days ago
So why Async.js over Promises or Generators at this point?
1 comments
megawac
3626 days ago
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)
link
Async also supports nodejs callback patterns which can reduce the need for wrappers (promisify)