Angular advanced Concepts and how to build and deploy production-ready amazing single page applications with Angular and Typescript

  • Develop modern, complex, responsive and scalable web applications with Angular.
  • Templates and Template Outlets, ng-content, ng-container, style isolation and customization.
  • Build custom validators, including asynchronous and multi-field validators.
  • In-depth to the Angular Router , Lazy-loading Pipes, Services and advanced router Concepts
Read more about the article JWT Authentication in Angular 11 – Token based Authentication tutorial with example
jwt token authentication

JWT Authentication in Angular 11 – Token based Authentication tutorial with example

JSON Web Token (JWT) are digitally signed JSON payloads and token based stateless authentication mechanism. A JWT consists of three parts that are: The Header, Payload and the Signature. Both the header and the payload store data in the JSON format, which is Base64-encoded, while The signature is created using the Base 64 encoding of the header and the payload. JWT is usually used in HTTP Authorization headers and temporary replacement for the username/password combination!

Continue ReadingJWT Authentication in Angular 11 – Token based Authentication tutorial with example