An open API service indexing awesome lists of open source software.

https://github.com/devluxor/modern-async-js

This repo contains notes and exercises for the book "Modern Asynchronous JavaScript", by F. K. Kelhini.
https://github.com/devluxor/modern-async-js

Last synced: 6 months ago
JSON representation

This repo contains notes and exercises for the book "Modern Asynchronous JavaScript", by F. K. Kelhini.

Awesome Lists containing this project

README

          

# Modern Asynchronous JavaScript

This repo contains notes and exercises for the book "Modern Asynchronous JavaScript", by F. K. Kelhini.

- [Introduction and Overview](./intro.md)
- [Chapter 1: Custom Asynchronous Iterators](./01_custom_async_iterators/notes.md)
- [Chapter 2: Enhancing with Generators](./02_enhancing_with_generators/notes.md)
- [Chapter 3: Fetching Multiple Resources. `Promise.all()`, `Promise.allSettled()`](./03_fetching_multiple_resources/notes.md)
- [Chapter 4: Improving Reliability and Performance. `Promise.any()`](./04_improving_reliability_and_performance/notes.md)
- [Chapter 5: Setting a Time Limit for Asynchronous Tasks. `Promise.any()`, `Promise.race()`](./05_setting_a_time_limit_for_async_tasks.md/notes.md)
- [Chapter 6: Canceling Pending Asynchronous Requests. `AbortController` API](./06_canceling_pending_async_requests/notes.md)
- [Chapter 7: Accessing Promise Results from Another Module. Top level `await`](./07_accessing_promise_results_from_another_module/notes.md)
- [Appendix A: Examples and Use Cases](./EXAMPLES_AND_USE_CASES.md)