What this book covers
In Chapter 1, Diving into the Reactive Paradigm, you will learn the fundamentals of reactive programming.
In Chapter 2, Walking through Our Application, you will learn the architecture and requirements of the recipe application that we will be building through the book.
In Chapter 3, Fetching Data as Streams, you will learn the reactive pattern for fetching data so that we can reactively retrieve a list of recipes in our recipe app.
In Chapter 4, Handling Errors Reactively, you will learn the different error strategies and the reactive patterns for handling errors.
In Chapter 5, Combining Streams, you will learn the reactive pattern for combining streams and use it to implement a filter functionality in our recipe app, while also discovering the common pitfalls and sharing best practices for optimal implementation.
In Chapter 6, Transforming Streams, you will learn the reactive pattern for transforming streams and use it to implement autosave and autocomplete features in our recipe app.
In Chapter 7, Sharing Data between Angular Components, you will learn the reactive pattern to share data between components and use it to share the selected recipe in our recipe app.
In Chapter 8, Mastering Reactivity with Angular Signals, you will deep-dive into Angular signals, learning different reactive patterns based on Angular Signals, and how to unleash the power of RxJS and Signals together. You will also discover the latest Angular Signals improvements.
In Chapter 9, Demystifying Multicasting, you will learn the essentials of multicasting and the different multicasting concepts and operators offered by RxJS, such as Subjects, Behavior Subjects, and Replay Subjects.
In Chapter 10, Boosting Performance with Reactive Caching, you will learn the reactive pattern to cache streams and implement a caching mechanism in our recipe app, based on the latest RxJS features.
In Chapter 11, Performing Bulk Operations, you will learn the reactive pattern to perform bulk operations and implement a multiple asynchronous file upload in our recipe app.
In Chapter 12, Processing Real-Time Updates, you will explore the reactive patterns to consume real-time updates and display newly created recipes instantly in our recipe app.
In Chapter 13, Testing RxJS Observables, you will learn the different strategies to test reactive patterns and practice testing the API responses in our recipe app.