Hacker News new | ask | show | jobs
by heifer2822 3860 days ago
checkout Koa to see a great use case of generators. By yielding to asychronous code (instead of callbacks) you can write JS that looks like it's synchronous.
1 comments

What is the advantage of using generators versus promises?
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...