Have a look at the Angular University Youtube channel, we publish about 25% to a third of our video tutorials there, new videos are published all the time.
Subscribe to get new video tutorials:
This post is a step-by-step guide for both designing and implementing JWT-based Authentication in an Angular Application.
The goal here is to discuss JWT-based Authentication Design and Implementation in general, by going over the multiple design options and design compromises involved, and then apply those concepts in the specific context of an Angular Application.
We will follow the complete journey of a JWT from creation on the Authentication server and back to the client, and then back to the Application server and talk about all the design options and decisions involved.
Because Authentication also requires some server code, we will show that too so that we have the whole context and can see how all the multiple parts work together.
The server code will be in Node / Typescript, as it’s very familiar to Angular developers, but the concepts covered are not Node-specific.
If you use another server platform, it’s just a matter of choosing a JWT library for your platform at jwt.io, and with it, all the concepts will still apply.
In this post we will cover the following topics:
So without further ado, let’s get started learning JWT-based Angular Authentication!
#angular #authentication #jwt