rxjs

What is New in Angular 9?

Ivy Version 9 moves all applications to use the Ivy compiler and runtime by default. This offers numerous advantages: Smaller bundle sizes Faster testing Better debugging Improved CSS class and style binding Improved type checking Improved build errors Improved build times, enabling AOT on by default Improved Internationalization New options for ‘providedIn’ In addition to the previous root and […]

What is New in Angular 9? Read More »

Simple Angular Local Caching

Caching is a very useful feature to reduce server-side network traffic. It can reduce server requests by saving and receiving data on the client-side. Therefore, we will achieve more performance in the client application. I mentioned how powerful angular HTTP tools are in my previous posts; HttpClient and HttpInterceptor. In this article, we will manage

Simple Angular Local Caching Read More »

What is New in Angular 8?

Differential Loading Angular 8 takes advantage of  Differential loading by default. It is a process by which the browser chooses between modern or legacy JavaScript based on its own capabilities.  Differential Loading Angular 8 replates Angular 7’s custom loadChildren syntax with industry-standard dynamic imports. Web Worker Support You can now generate new web workers from the CLI.

What is New in Angular 8? Read More »

How to Create an Angular HttpInterceptor?

Angular 4.3 brought us a new easier way to handle HTTP requests with the HttpClient library. I mentioned how powerful this tool is in my previous post; Introduction to Angular HttpClient Now it’s time to explore another of the powerful angular features: interceptors. Interceptors provide a mechanism to intercept and/or mutate outgoing requests or incoming responses. Interceptors are a way

How to Create an Angular HttpInterceptor? Read More »

Introduction to Angular HttpClient Library

Angular 4.3 introduces a new easier way to handle HTTP requests with the HttpClient library. It’s available under a new name to avoid causing breaking changes with the current Http library.  HttpClient basically performs HTTP requests and also gives us advanced functionality like the ability to listen for progress events and interceptors to monitor or modify requests or responses.

Introduction to Angular HttpClient Library Read More »