Hacker News new | ask | show | jobs
by chadscira 3421 days ago
Yea but when using promises with async/await its very beautiful.

    await asyncFuncOne();
    await asyncFuncTwo();
No more weird water-falling, and finally proper exception handling. The only gotcha is the fact that we cant awaits at the root of a module, and we need to wrap it in a async function.
1 comments

The 250Kb extra weight to the Babel bundles (compared to the equivalent callback version) is quite frustrating though.