
Angular InDepth



switchAll – RxJS Reference
switchAll switchAll takes a source observable that produces other observable streams. Such observable is called higher-order observable and the streams emitted as values are called inner observables. The operator …


mergeMap – RxJS Reference
mergeMap mergeMap operator is basically a combination of two operators – merge and map. The map part lets you map a value from a source observable to an observable …


exhaustMap – RxJS Reference
exhaustMap exhaustMap operator is basically a combination of two operators – exhaust and map. The map part lets you map a value from a higher-order source observable to an …


filter – RxJS Reference
filter filter emits all items received from the source observable that satisfy a specified comparison function known as the predicate. The idea is very similar to the standard filter …


combineLatest – RxJS Reference
combineLatest combineLatest allows to merge several streams by taking the most recent value from each input observable and emitting those values to the observer as a combined output (usually …


RxJS Tutorials
RxJS tutorials The simple way to reload data using RxJS


Angular tutorials
Angular tutorials Lazy load stylesheets Authentication token interceptor Angular applications SEO improvement with social media customization


The simple way to reload data using RxJS
The simple way to reload data using RxJS Most of the time, we have to load data from the server. To perform the action client usually sends requests along …


How to exclude stylesheets from the bundle and lazy load them in Angular? – Angular Tutorials
How to exclude stylesheets from the bundle and lazy load them in Angular? Let’s learn how we can load stylesheets only when needed without making them part of the …


Angular applications SEO improvement with social media customization – Angular Tutorials
Introduction Scully is a static site generator for Angular projects which utilizes all of Angular's power but still gives all the SEO benefits that static sites offer. In this …


switchMap – RxJS Reference
switchMap switchMap operator is basically a combination of two operators – switchAll and map. The map part lets you map a value from a higher-order source observable to an …


map – RxJS Reference
map map is part of the so-called transformation operators group because it’s used to transform each item received from the source observable. The operator passes each source value through …