Intro Local storage and Session storage are part of the so called Web storage. Both of them give us the possibility to store key-value data on client side. The data
Continue readingTag: Angular

Mock/Fake Backend API in Angular – How To
Developing in synchronization with the backend could be challenging sometimes. Various things like – down of environment, incorrect response or wrong endpoint behavior can complicate the process and make it
Continue readingDeploy Angular application to AWS S3 and CloudFront
The purpose of this article is to show you how to deploy your angular application to AWS S3 in few detailed steps. An important thing to mention before continue: the
Continue readingCreate a reusable confirmation dialog in Angular 7, using Angular Material
Having a confirmation dialogs is a very common requirement in the applications nowadays. They are used when a specific(in most cases destructive) action is executed, like deleting a specific record.
Continue readingDisplay a loader on every HTTP request using Interceptor in Angular 7
As you may already know, as of version 4.3, Angular introduced a new HttpClient. One of the main features of this client is interception – a way to declare interceptors,
Continue reading