Hacker News new | ask | show | jobs
by NikolaeVarius 3862 days ago
What is the advantage of using generators versus promises?
2 comments

http://stackoverflow.com/a/28032438 gives a great overview to the pros and cons of both approaches.
In this case, Koa uses generators and promises together to emulate the behavior of async/await style concurrency. You can see how Babel 5.x transforms ES7 async/await into generators and promises at https://github.com/babel/babel/blob/v5.8.34/packages/babel/s...