
Learning Angular
By :

Give your feedback straight to the author himself and chat to other early readers on our Discord server (find the "learning-angular-5e" channel under EARLY ACCESS SUBSCRIPTION).
https://packt.link/EarlyAccess/
Handling asynchronous information is a common task in our everyday lives as developers. Reactive programming is a paradigm that helps us consume, digest, and transform asynchronous information using data streams. RxJS is a JavaScript library that provides methods to manipulate data streams using observables.
Angular provides an unparalleled toolset to help us when working with asynchronous data. Observable streams are at the forefront of this toolset, giving developers a rich set of capabilities when creating Angular applications. The core of the Angular framework is lightly dependent on RxJS. Other Angular packages, such as the router and the HTTP client, are more tightly coupled with observables.
Additionally, Angular...