How to implement JWT Token Authentication in Angular with .NET Core?

In this article, we will demonstrate JWT Token Authentication in Angular with .NET Core. To implement the JWT Token authentication mechanism, we will use the – What is JWT Token? JWT stands for JSON Web Tokens. It is a Token-based authentication to communicate with the REST endpoints in a secure way. It is a JSON-based token so … Read more

Data Protection in ASP.NET Core

In this article, we will learn about Data Protection in ASP.NET Core: what it is, why we need it and how to implement it in .NET Core-based applications. What is Data Protection? The method of applying security to any data is called data protection. Data Protection plays a very vital role especially when we move … Read more

Introduction to gRPC

For the past many years, we have been using Rest Based Communication. As we know that REST is a flexible architectural style where the client communicates with the server through HTTP. Recently, a new framework for client-server communication has been invented in the industry which we know as gRPC. What is gRPC, and how does … Read more

Are Onion Architecture and Clean Architecture same?

Onion Architecture and Clean Architecture both are used to provide a standard architecture to the software. These architectures play a key role when we build a large and complex projects which require regular enhancements.In this article, we will know about Onion architecture and Clean architecture in details. Also, we will see a basic example of … Read more

In-Memory Caching in ASP.NET Core

This article focuses on “How to implement In-Memory Caching in ASP.NET Core?” What is Caching? Caching is a method to deliver data faster to the client so that information can be served a lot quicker for any future requests. So, we take the most often utilized information and duplicate it into brief capacity so it … Read more

In-Process and Out-Of-Process hosting models in ASP.NET Core

In this article, we will learn about In-Process and Out-Of-Process hosting models in ASP.NET Core. At the point when you push your web application to IIS, different solicitations to the application are taken care of by what is known as ASP.NET Core Module. In-Process and Out-Of-Process Hosting Model Under default settings, the hosting model for … Read more