In Part 1, I have explained the typical error handling approach and best practices for error handling in the Angular web. In this article, we will implement what we discussed in the previous post. So, let’s start with our sample project. Demo I have stimulated …
Issues when enabling SSL/https protocol with IdentityServer4 running besides Nginx web server. Problem: OpenId Connect discovery specification endpoint https://authserver.xxxxxxxxxxx.com/.well-known/openid-configuration returns wrong protocol. Refer to the screenshot on the right, it returns endpoints with HTTP protocol instead of HTTPS. Solution: To resolve this issue, we need …
In this article, we will go through the sample code to understand the implementation of server-side pagination along with data filter. Let’s walkthrough step by step. 1) Define the Request Model Define a model which includes the input properties, for example in order to perform …
This is just a followup article, some of the readers were requesting for the Angular PWA demo in android device. So, If you are new to this read please have a look in to the article Running Angular PWA with .NET Core WebApi like an …
In this article we will see how to self host and configure google fonts inside our angular projects. Of course, CDN’s are great solutions, but still there are cases where we may need to self host the fonts. This will also avoid some unknown surprises …
This article is for the developers who are already familiar with using the Angular framework and .NET Core technology. If you are new to Angular PWA, please refer to the angular docs to learn how to set up and run Angular PWAs. Progressive Web Apps …
In Part 2, We have implemented our Global Error Handler class and handled all the client-side & Http errors in our application globally. At the end of Part 2, we had a question why do we even have the HttpInterceptor object in our proposed solution, RIGHT !… Let’s jump …
First of all, I welcome you to this rxjs tutorial series for beginners 🙂 I hope this will help you understand the power of RxJs and will increase your curiosity about learning RxJs. Actually, before we get into the concepts of RxJs, I just want …
In this article, we will explore the best approach to handle errors globally in Angular web applications. Types of Errors Client-Side Binding errors, References errors, Type errors and the errors thrown from 3rd party packages, etc., Http Error Response Status Codes: 400, 401, 404, 500, …
This article is for angular developers who are already familiar with Angular CLI command-line interface tool, others please refer this and continue Angular Cli – Unit Test Setup Angular CLI takes care of all the heavy liftings and it automatically configures all the necessary packages for us. …