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.
- Host: GitHub
- URL: https://github.com/devluxor/modern-async-js
- Owner: devluxor
- Created: 2023-11-25T15:45:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-28T14:10:49.000Z (over 1 year ago)
- Last Synced: 2025-04-12T17:44:35.498Z (over 1 year ago)
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)