Introduction Implementing time-based caching in Angular using HTTP Interceptor is simple and easy. This post shows step by step process of creating simple caching logic for all outgoing HTTP GET API calls. Why implement caching? Angular is used to develop SPA applications. Most of the pages in an application will call external HTTP APIs (GET) […]
Browsing Category: Angular
Angular Getting Started | Software Installation and App Setup | Part 2
Overview In this post, I will cover software installation steps and app setup from scratch. Software Installations In this course, I introduce TypeScript, which is the programming language we’ll use. TypeScript is the language we use when working with Angular. Let me take a moment to tell you what is TypeScript. “TypeScript is JavaScript with […]
Angular Getting Started | Course overview and Introduction | Part 1
Overview Angular Getting Started is a beginner-level course that takes you on a journey through the basic features of Angular. The course will guide you through the right path and make you feel more pleasant and productive. In this course, we build a sample application E.g. Restaurant. so you can code along or use it […]
Google place autocomplete integration with Angular 11 using the reactive form
Google place autocomplete integration with Angular 11 is now easy to build and use. Getting addresses from customers is so common these days in any application. Verifying the received address is going to be a challenge. We can overcome this by using Google place autocomplete to get the suggested address and even more accurate address. […]
Implementing ISO 8601 date time format in Angular
In this post, I will show you how to Implement ISO 8601 date time format in Angular. Formatting a date-time in a client-side application like Angular is always a challenge. Are you looking for an unambiguous calendar-and-clock format that is internationally understood? It’s time for ISO 8601. From ISO.ORG Read more about ISO 8601 DATE AND TIME […]
How to reset the selected file with input tag file type in Angular 9
In this short post, I will show how to reset the selected file with the input tag file type in Angular 9. The usage of file input in HTML is more common. It is always good to reset or clear the selected files after a successful process of the file on the server-side. Input File: […]
How to upload a file from Angular 9 with .NET Core Web API
In this post, I will show how to upload a file from Angular 9 with .NET Core. Uploading a file is the process of uploading a file from the user’s system to a hosted web application server. You may choose to store the file in the web server’s local disc or in the database. It […]
How To Fix Your Angular App To Make it work in IE11
Introduction In this short post, I will show How To Fix Your Angular App To Make it work in IE11. In Angular CLI version 8 and higher, applications are built using differential loading, a strategy where the CLI builds two separate bundles as part of your deployed application. The first bundle contains modern ES2015 syntax, takes […]