Angular In Depth

Angular InDepth

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 …

Angular InDepth

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 InDepth

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 …

Angular InDepth

Angular tutorials

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

Angular InDepth

RxJS Tutorials

RxJS tutorials The simple way to reload data using RxJS

Angular InDepth

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 …

Angular InDepth

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 …

Angular InDepth

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 …

Angular InDepth

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 …

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 …

Angular InDepth

concatMap – RxJS Reference

concatMap concatMap operator is basically a combination of two operators – concat and map. The map part lets you map a value from a source observable to an observable …

Angular InDepth

of – RxJS Reference

of of is used to emit arguments as values in a sequence and then complete the stream. Unlike from, it does not do any flattening or conversion and emits …