Echo JS
- The Hidden Power of ES6 Generators: Observable Async Flow Control https://medium.com/javascript-scene/the-hidden-power-of-es6-generators-observable-async-flow-control-cfa4c7f31435 2 comments
Hacker News
- Node.js callbacks vs. promises vs. generators vs. async-await https://smalldata.tech/blog/2016/10/24/node-js-callbacks-vs-promises-vs-generators-vs-async-await 12 comments
- Show HN: New async JavaScript paradime with async generator and async iteration https://github.com/brn/sagu 4 comments
- Async JavaScript Generators https://www.bignerdranch.com/blog/asyncing-feeling-about-javascript-generators/ 24 comments
- Diesel 2: Using generators for async (and back again) http://devblog.bu.mp/generators-and-back-again 13 comments
- Chrome 63 Beta: Dynamic module imports, async iterators and generators, http://blog.chromium.org/2017/10/chrome-63-beta-dynamic-module-imports_27.html 5 comments
- I really like Puppeteer. Their API is all async-await, great for scraping, screenshots and PDF generation. Made a couple videos. https://www.youtube.com/playlist?list=PLsV08vdR7NUY1fPPbYPisi3Sj-u8i9jPf 32 comments javascript
- Callback Hell, Promises, Generators & Async-Await in Node.js/Javascript http://farzicoder.com/callback-hell-promises-generators-async-await-in-node-js-javascript/ 15 comments javascript
- Turning JSON Objects from a Fetch Response into an Async Generator with the Streams API https://text-to-json.com/blog/turning-json-objects-from-a-fetch-response-into-an-async-generator-with-the-streams-api 3 comments javascript
- Generator-based coroutine vs async-based coroutine https://snarky.ca/how-the-heck-does-async-await-work-in-python-3-5/ 4 comments learnpython
- Node.js Native Messaging host using an async generator, WHATWG Streams, resizable ArrayBuffer, and DataView to process STDIO https://github.com/guest271314/native-messaging-nodejs/tree/stream-stdio 3 comments javascript
- Async tasks pool generated from an iterable with max concurrency https://github.com/rxaviers/async-pool/blob/master/lib/es9.js 10 comments node
- async generators on nightly Rust https://github.com/rust-lang/rust/pull/118420#event-11197765508 10 comments rust
- Introducing taskio: async tasks from generators without context to replace nb https://docs.rs/taskio/0.1.0-alpha-1/taskio/ 5 comments rust
- The problem with async generators https://alinacierdem.com/the-problem-with-async-generators/ 14 comments javascript
- Generating async code at runtime https://www.reddit.com/r/csharp/comments/h8iism/generating_async_code_at_runtime/ 7 comments csharp
- Asynchronous Generators and the Unix-like async piping pattern https://dev.to/jfet97/javascript-iterators-and-generators-asynchronous-generators-2n4e 5 comments javascript
- Async Generator Functions in JavaScript http://thecodebarbarian.com/async-generator-functions-in-javascript.html 4 comments node
- Async Generators as an alternative to State Management https://medium.com/dailyjs/async-generators-as-an-alternative-to-state-management-f9871390ffca 4 comments javascript
- Goodbye Transform-Streams, long live ES9 Async Generators https://medium.com/@andreasimonecosta/goodbye-transform-streams-long-live-es9-async-generators-86e60284fb80 30 comments node
- Redux-thunk can be replaced by Async Generators https://codeburst.io/redux-thunk-generators-fec5337827e 13 comments javascript
- generators are the missing piece for async https://dwrensha.github.io/capnproto-rust/2016/05/28/async-generators.html 72 comments rust
- All about javascript generators: basics, working with async and pseudo-Thread implementation http://myrighttocode.org/blog/js/es6/generators/all-about-generators 6 comments javascript
- Analysis of generators and other async patterns in node http://spion.github.io/posts/analysis-generators-and-other-async-patterns-node.html?utm_source=nodeweekly&utm_medium=email 3 comments javascript
- Announcing pegy - a derive based async peg parser generator https://github.com/YC-Lammy/pegy 4 comments rust
- Create async generator using `async/await` in stable Rust. https://github.com/nurmohammed840/async-gen 3 comments rust
- Async functions solve callback hell for the Promise “monad”. Generators solve this for any Monad in JavaScript. https://medium.com/flock-community/monads-simplified-with-generators-in-typescript-part-1-33486bf9d887 8 comments javascript
- Async functions solve callback hell for the Promise “monad”. Generators solve this for any Monad in TypeScript. https://medium.com/flock-community/monads-simplified-with-generators-in-typescript-part-1-33486bf9d887 41 comments programming
- Can tsc compile async functions to Promises instead of generators? https://www.reddit.com/r/typescript/comments/fd978u/can_tsc_compile_async_functions_to_promises/ 4 comments typescript
- Next generation async functions with vue async function. https://xebia.com/blog/next-generation-async-functions-with-vue-async-function/ 8 comments vuejs
- async-redux-actions automatic action creator and action types generation https://github.com/VinSpee/async-redux-actions 9 comments reactjs
- Decoupling business logic using async generators https://medium.com/@vitaliy.akimov/decoupling-business-logic-using-async-generators-cc257f80ab33 4 comments javascript
- Going Async With ES6 Generators (Nothing Extra Required) http://davidwalsh.name/async-generators 3 comments javascript
- Ad-hoc async in emacs-lisp via generators https://andreyorst.gitlab.io/posts/2023-02-01-ad-hoc-async-in-emacs-lisp-via-generators/ 6 comments emacs
- My first foray into ES7 async generators https://gist.github.com/rob-mccann/0be14a5cad939ab9c854 3 comments javascript
- Async code without callbacks with CoffeeScript generators https://nvbn.github.io/2015/02/01/coffeescript-generators/ 4 comments coffeescript
- I wrote a tiny generator runner that transparently concludes yielded promises, iterators, and effects, making your async flows cancellable and testable. https://github.com/dmaevsky/conclure 49 comments javascript
- Are you bad, good, better or best with Async JS? JS Tutorial: Callbacks, Promises, Generators https://www.youtube.com/watch?v=obaSQBBWZLk 3 comments javascript
- asyncio.TimeoutError due to asyncio.wait_for in async_generator deplete or consume the async_generator https://gist.github.com/guillermoAlv/25ada3f879f0cc57b368742422de9a4f 3 comments learnpython
- Async-Await through Callback-Generating Syntax Extension https://github.com/Arubaruba/rust-async 13 comments rust