NestJs JWT - Access Tokens & Refresh Tokens - Ultimate Guide

Sdílet
Vložit
  • čas přidán 26. 07. 2024
  • In this video, I will be building a complete authentication module with logout and refresh functionality. I will also show how you can use access tokens and refresh tokens with passport js and nestJs.
    If you love this video consider leaving me a like to help with the youtube algorithm and subscribing if you haven't.
    Github repo of the project: github.com/vladwulf/nestjs-jwts
    00:00 NestJs Jwt Authentication Intro
    08:58 Prisma and Docker setup
    19:35 Prisma service
    23:00 Auth module
    39:50 Setting up Passport strategies
    47:00 NestJs Jwt Module
    54:00 Updating refresh token hash
    1:02:40 Logout function
    1:06:00 Jwt Guards
    1:12:00 Refresh tokens function
    1:19:00 Get Current User decorator
    1:29:00 Access token and Refresh token guards
    1:30:00 Access token guard can activate
    IMPORTANT: Please use argon for hashing and verifying refresh tokens (www.npmjs.com/package/argon2). Bcrypt is only good for short passwords (less than 74 bytes). Since our refresh token is a JWT, it will be longer than 74 bytes, so our bcrypt compare function might return true when it should not!

Komentáře • 303

  • @omidr666
    @omidr666 Před 2 lety +38

    Thank you for the tutotial, it's a good one. I just wanted to make a few points. From the security standpoint, the good practice is to have JWT in memory or basically sending through http context and save refresh token in an http only cookie so when a user leaves their browser and comes back again, the application can uses the refresh token to issue a new access token. But, by using your approach, when a user refreshes their browser or closes it they lose both access and refresh tokens and they have to sign in again in order to access the protected area of the application. In SPA applications you use a refresh token in order to issue an access token again after its expiration, so we need to keep it somewhere safe to use it again, otherwise it is pointless to use it. On top of that, when you only use one refresh token in your user's entity and every time you replace it with a new one, then users will not be able to have their multiple devices logged in, because whenever they logs in in each device,then the previous refresh token they used in another device will be replaced with a new one and their another device will be no longer logged in. So we need a user entity that has one to many relationship with a refresh token entity. You can also read more about the security recommendations for access and refresh tokens from the link below if you are interested:
    dev.to/cotter/localstorage-vs-cookies-all-you-need-to-know-about-storing-jwt-tokens-securely-in-the-front-end-15id

    • @aadispare3673
      @aadispare3673 Před rokem +1

      That's a very clear explanation. Thank you so much. Although I just have one naive question... From SPAs, we always send access tokens in headers... How do we know when to send the refresh token to generate new tokens?
      I mean when the access token is expired it will send an unauthorised (forbidden) exception or something of that sort. Then how do we send the refresh token?
      Any working example code would be really helpful. Thank you

    • @big-jo89
      @big-jo89 Před rokem

      @@aadispare3673
      checkout this tutorial by Dave Gray czcams.com/video/4TtAGhr61VI/video.html

    • @qunther
      @qunther Před rokem +1

      @@aadispare3673 Late answer here, but actually when you hit a protected route, if the access token has expired you will get an unauthorized exception, so you must catch this exception by hitting the refresh tokens route if the refresh token is not expired too, then try to hit the first route again

    • @aadispare3673
      @aadispare3673 Před rokem

      @@qunther makes sense mate. Thank you 😊

    • @ahmadnabil5779
      @ahmadnabil5779 Před 8 měsíci

      Cool!

  • @klik24
    @klik24 Před 2 lety +1

    Wish I found your video few days back. Great explanation, one of the best I heard & actually understood. Many thanks Vlad.

  • @scottamolinari
    @scottamolinari Před 2 lety +17

    Hey. Nice video. Some points of interest.
    1. @Injectable tells Nest to reflect on the constructor and see if there are dependencies it needs to inject into it. If there are no dependencies to inject, you don't need the decorator.
    2. You can store tokens in local storage on the client, however they are open to an XSS attack and with 7 days (for the refresh token), a lot of damage can be done. I'd suggest storing the refresh token in an http only cookie. This avoids XSS attacks, as attackers won't be able to get access to the cookie. You should also add the "/refresh" path to the cookie too, so the cookie is only sent on requests made to the "/refresh" endpoint.

    • @CodeWithVlad
      @CodeWithVlad  Před 2 lety +12

      Thank you a lot for this comment! 1. Yes 100% :) 2. Excellent suggestion, I had a couple of discussions on reddit and we agreed that what you suggest would be the best solution. I will prepare a video on the subject

    • @ahmadnabil5779
      @ahmadnabil5779 Před 8 měsíci

      Can the mobile client access the cookie if the refresh token is stored in cookie with httponly?

    • @scottamolinari
      @scottamolinari Před 8 měsíci

      @@ahmadnabil5779 No. That's the reason why there are httponly cookies, so clients can't mess with them.

  • @renends7615
    @renends7615 Před 2 lety +14

    This tutorial is excellent.
    A great teacher, who makes us go deeper into the content through knowledge, good humor, sincerity (because there were no cuts in the moments of code error) and many tips to evolve as developers.
    Thanks!

  • @ToshisanMotonaka
    @ToshisanMotonaka Před 2 lety +41

    This is the greatest guide to understanding JWT + refresh! Thank you so much, it really helped me really nail down this concept and practice!

    • @CodeWithVlad
      @CodeWithVlad  Před 2 lety +2

      Thanks a lot! It makes my day :)

    • @CodeWithVlad
      @CodeWithVlad  Před 2 lety +2

      Please don't forget to use argon2 instead of bcrypt (check the pinned comment)

    • @ToshisanMotonaka
      @ToshisanMotonaka Před 2 lety

      @@CodeWithVlad I have a question; while I understand the concept and have some practical experience, one thing I'm having difficulty with is determining the best method to implement this with some frontend code.

  • @ebratz
    @ebratz Před 2 lety +7

    What a masterclass on the subject! Thank you really much for publishing this video!

  • @jojog2624
    @jojog2624 Před 2 lety +3

    Great tutorials! Explained clearly with a very practical project! Thanks a lot for your sharing!
    Looking forward to your new videos about anything :D

  • @iPururin
    @iPururin Před 2 lety +4

    This is excellent content 💯. The flow of learning concepts and writing code hits the mark. Major kudos for covering typescript safety, especially for creating custom decorators and explaining the public guards. Thank you, this was an easy subscription from me.

    • @CodeWithVlad
      @CodeWithVlad  Před 2 lety +1

      I'm glad you loved it! Please don't forget to use argon2 instead of bcrypt (check the pinned comment)

  • @KetanAjani93
    @KetanAjani93 Před 2 lety +5

    To learn NestJS Authentication I have seen many videos and I got confuse about JWT but with your video I am pretty clear and the way you explain everything is awesome.
    Thanks.

  • @christophermaisch
    @christophermaisch Před 2 lety +10

    Vlad, thank you again. You are really putting a lot of effort into these videos dude and we can see it in your how you are able to tie multiple concepts together in a way that logically flows so well! You have taught us in hours what it takes some years to understand so thank you for literally giving me extra life points! 👏👏👏

  • @akerenkater8437
    @akerenkater8437 Před 2 lety

    This is elegant, Vlad. You inductively demystify the abstract concepts and made them look simpler for digestion. I look forward to learning the Microservice with NestJs from you.
    Thanks, Man! 🥰

    • @CodeWithVlad
      @CodeWithVlad  Před 2 lety +2

      Aaah microservices, I will get to them soon. Need to first provide content on sessions and graphql. :) Thank you Akeren, much appreciated!

  • @imthedaniels
    @imthedaniels Před 11 měsíci

    I was trying to find a tutorial for many days that would explain the reason for each thing and not just give me the code. Your tutorial is one of the best I've seen on CZcams and I'm surprised it's free, congratulations on something so amazing, you earned a subscriber. I hope you can launch courses, I will buy for sure. Hugs from Brazil!

  • @donluc007
    @donluc007 Před 9 měsíci

    wow - well done Vlad, one of the most comprehensive tutorials / real course, thanks a bunch for your effort and for sharing this knowledge!

  • @louislecouturier
    @louislecouturier Před rokem

    Man... This is actually one of the best tutorial I've ever watched ! You're a really good teacher, thanks a lot !

  • @AbdulHanan-ci3se
    @AbdulHanan-ci3se Před rokem

    This is amazing tutorial 🙌,
    I remember before watching the video I had implement Auth-JWT and it took 3 days to understand and implement.

  • @neurit
    @neurit Před 2 lety +1

    Прекрасное видео! Видно, что в проекте позже был использован Аргон, что тоже круто) Надеюсь увидеть в будущем более продвинутую реализацию, в том числе с функционалом активации аккаунта по почтовому ящику. Спасибо за такой ценный контент!

  • @GodfatherOfKcontent
    @GodfatherOfKcontent Před 2 lety

    Not sure if the 15mins delay logout w/ refresh token hash is from who's idea. that's cunningly brilliant. one of the finest JWT tutorials ever. keep up the good work. i totally appreciate your time and effort.

  • @motziesel
    @motziesel Před 2 lety +2

    Thank you very much for showing the context and how it is actually done in a real project :)

  • @nickchauhan
    @nickchauhan Před 2 lety

    Best video I've seen so far for the JWT implementation in Nest Js. Thanks Vlad.
    Subscribed :)

  • @ugurcanbas3821
    @ugurcanbas3821 Před rokem

    That was awesome! I'm new with NestJs and started to create my own demos. I've learned almost everything from you. Thank you so much for sharing that much information.

  • @es7729
    @es7729 Před měsícem

    You came here and wondering is it worth watching this video? Absolutely!
    Thanks, Vlad!

  • @PaulPariat
    @PaulPariat Před 7 měsíci

    Thanks for this wonderful tutorial! It was great understanding refresh tokens along with Nestjs at the same time

  • @spellsaif
    @spellsaif Před rokem +2

    You are awesome. You are making me to love nestjs more. Thank you sensei 😊

  • @aleksandrpetrov3938
    @aleksandrpetrov3938 Před 10 měsíci +1

    Not long and not tedious. That's what tutroial should be. You get the whole idea in one video and then just keep on your coding. Thank you for the tutorial

  • @namangarg3933
    @namangarg3933 Před rokem

    This is such an amazing video. Glad I stumbled across this. Subscribed. Would be going through the other videos on your channel. And, eager to learn more from you.
    Thank you so much.

  • @intermix1297
    @intermix1297 Před rokem +2

    I like that you don't cut out the way you look for bugs in the code. It helps to keep track of the way you think when something goes wrong

  •  Před 2 lety

    This has been by far the best tutorial I have seen about authentication in nest with jwt, congratulations!

  • @Teddyrobinson
    @Teddyrobinson Před 6 měsíci

    Can't believe I made it all the way to the end!! Thanks so much.

  • @octavenkurunziza8680
    @octavenkurunziza8680 Před 2 měsíci

    me recognizing the errors before vlad does proves i m getting better😂 thanks for the explanation tho i needed this

  • @saeeduchiha5537
    @saeeduchiha5537 Před 6 měsíci

    one of the best videos in authentication using refresh tokens

  • @codernerd7076
    @codernerd7076 Před 2 lety

    Thanks this is the type of quality tutorials I want to see on CZcams!

  • @victordepta4069
    @victordepta4069 Před 2 lety +5

    Great tutorials you make. Congrats mate! Please covers specs and integration testing.

  • @tarifulislamfahim9348
    @tarifulislamfahim9348 Před 6 měsíci

    Awesome. i followed this exciting tutorial to build authentication for my own project. Thank you

  • @maikeontime
    @maikeontime Před 2 lety

    You're the best! All the things that I know in NestJS are thank to you and your videos, you explain it so well! Now I was wondering, can you make a video on Redis and sessions too?

  • @ktoscos4546
    @ktoscos4546 Před 7 měsíci

    It was good Christmas with this tutorial , thanks

  • @nldcarbonfiber206
    @nldcarbonfiber206 Před 2 lety

    You're amazing dude, I really appreciate it. You helped me out so much!

  • @htmlandcsstutorial820
    @htmlandcsstutorial820 Před rokem +1

    Vlad is the best tutor for me

  • @mohammadalathamena
    @mohammadalathamena Před 2 lety

    this is awesome , this is best tutorial i have seen for jwt authentication on youtube

  • @ralgit
    @ralgit Před 2 lety

    I was looking for this, thanks! 🙌

  • @philstarcrypto6994
    @philstarcrypto6994 Před 2 lety

    Vlad keep going! Amazing stuff

  • @mfurkankaya
    @mfurkankaya Před rokem

    I think this is the best tutorial for auth flow. Thanks!

  • @diatm1506
    @diatm1506 Před 2 lety +1

    Thank you so much I finally searched all over the Internet

  • @AT-mx3bx
    @AT-mx3bx Před 2 lety

    Amazing tutorial, so glad I found this

  • @baophunggia9835
    @baophunggia9835 Před 2 lety

    Thank you so much bro. This is very helpful for me and everyone

  • @ragsbigfella
    @ragsbigfella Před 5 měsíci

    Vlad, loved your video on NextJS on Free code camp. Thank you. Really appreciate it.

  • @onuralkan190
    @onuralkan190 Před 7 měsíci

    Best learning content and teacher i ever seen!

  • @AleHacho
    @AleHacho Před 5 měsíci

    Thank you, very nice tutorial, i'll try to implement this with redis too.
    Sorry for my english and thank you again.

  • @robertofloresrosas1855

    Excelente, es la mejor explicación que he encontrado. Te lo agradezo mucho

  • @ramalingamgurunathan1085

    Excellent tutorial, Its very helpful. Thank you very much Boss

  • @josephhenshaw4912
    @josephhenshaw4912 Před rokem

    I just want to say this is a blessing, thank you, excellent

  • @outer-space-coding
    @outer-space-coding Před rokem

    Спасибо, Влад! Супер комплексный подход! В самом начале долго не мог понять, так какой же стандарт жизни access токена, 15 или 50 минут. Я же дилетант, обычно делал пять часов. ) Просто обычно в слове "fifteen" ударение на последний слог, а слышалось как будто "fifty" с ударением на первый слог. Еще раз спасибо за видео!

    • @tray174
      @tray174 Před rokem

      Забавно, я тоже об этом думал, но не стал писать, думал непринципиально, но оказывается кого-то это даже путает)

  • @atvu2245
    @atvu2245 Před 2 lety

    Excellent tutorial !👏👏

  • @bayoumi-tech
    @bayoumi-tech Před rokem

    This tutorial is excellent.
    Thank you very much

  • @ayanokojikiyotaka1923

    thanks for tutorial, you explained very well and easily help me a lot.

  • @abdulkhaliq6857
    @abdulkhaliq6857 Před rokem

    Amazing Man! I just followed and implemented AT & RT. Yuhuuu....Thanks...!

  • @thelanelim92
    @thelanelim92 Před 2 lety

    Great video Vlad 👌🏻👌🏻👌🏻👌🏻👌🏻

  • @user-yq4gv3dv2e
    @user-yq4gv3dv2e Před 2 lety

    Thank you so much! Very useful video

  • @ibadshaikh2215
    @ibadshaikh2215 Před 4 měsíci

    Awesome video.

  • @hiranpeiris3210
    @hiranpeiris3210 Před rokem

    Thank you. I have learned a lot.

  • @fuxiaochen
    @fuxiaochen Před rokem

    Super detailed and useful examples !❤

  • @joaquinnader
    @joaquinnader Před 2 lety +1

    this is pure gold! Thank you so much

  • @ali.muhsin
    @ali.muhsin Před rokem

    Just helped me do the first task in my internship!
    Thxxxx

  • @Lionellord
    @Lionellord Před 4 měsíci

    Thanks a lot. Very nice 🔥🔥

  • @truelife9859
    @truelife9859 Před 2 lety

    Thank you for Excellent tutorial. Yes of course I like to understand testing techniques too.
    Thanks

    • @CodeWithVlad
      @CodeWithVlad  Před 2 lety +1

      I'm glad you loved it! Please don't forget to use argon2 instead of bcrypt (check the pinned comment)

  • @user-cf3id5zz9v
    @user-cf3id5zz9v Před rokem

    This tutorial is more then excellent.

  • @thesunnatillo
    @thesunnatillo Před 3 dny

    Vlad aka darslariz juda zo'r (from Uzbekistan)

  • @SyedZainUlHasan
    @SyedZainUlHasan Před 2 lety

    Very nice video. But get very complicated after some time. :P Thank you Vlad

  • @timmywheels
    @timmywheels Před 2 lety

    amazing tutorial vlad!

  • @OlehBiblyi
    @OlehBiblyi Před 2 lety

    WOW, very interesting, please, keep going with videos like this!

  • @ivandariogye
    @ivandariogye Před 10 měsíci

    Nice tutorial, thanks! Actually it's nice seeing someone experienced mess up a little bit and find the solution on the go, that's how coding really is like.

  • @danilmakarov2726
    @danilmakarov2726 Před 7 měsíci

    Thanks, great tutorial!

  • @justinnoor4915
    @justinnoor4915 Před 2 lety

    Excellent video

  • @arthurdiluz_
    @arthurdiluz_ Před rokem

    Great video!

  • @adrianlineweaver4725
    @adrianlineweaver4725 Před 2 lety +1

    was looking for something like this!

  • @SibirianWolf1987
    @SibirianWolf1987 Před rokem

    Good job!

  • @jorgeguberte
    @jorgeguberte Před 2 lety +1

    i'm following this tutorial using Mongo instead of Postgres and it's even simpler. i don't know if it's more appropriate but it's easier. just a few issues related to migrate and the id field but other than that, very smooth sailing

  • @therock6391
    @therock6391 Před rokem

    Thank you It is very helpful

  • @ChrisJaydenBeats
    @ChrisJaydenBeats Před 2 lety

    Damn! You nailed it 🙏

  • @husnulaman
    @husnulaman Před 2 lety

    Great tutorial 🔥👏 please do one with sessions as well

    • @CodeWithVlad
      @CodeWithVlad  Před 2 lety +1

      A lot of people asking for sessions, seem like I don't have the choice than to make a video about that :)

  • @ceetatsumi1449
    @ceetatsumi1449 Před 2 lety

    Was here for the refresh function part... Ends up watching the whole video ! Thank you for all the tips !
    Can you explain why are you using index.ts ?

  • @tigrafale4610
    @tigrafale4610 Před 2 lety

    Nice one, thanks!

  • @Yoggan0
    @Yoggan0 Před 2 lety

    you are a GOD i watched so many tutorials and yours is the only one that actually works, 🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻

  • @nikelborm
    @nikelborm Před 2 lety

    Чел, ты великолепен! Видео очень качественное, зашло
    Мог бы написать и на английском, но не думаю, что это необходимо)

  • @pouriyababaali7040
    @pouriyababaali7040 Před 2 lety

    awesome man !

  • @fasttocode
    @fasttocode Před 2 lety

    You are awesome!, Thank you.

  • @jeffreysegovia7656
    @jeffreysegovia7656 Před rokem

    Subscribed! So nice. :) thank you.

  • @WizraiderRD
    @WizraiderRD Před 2 lety

    Muchas gracias hermano, bendiciones. He aprendído mucho y quiero que sepas que me estouy dedicando al back-end.

  • @user-jd7ub3tq2b
    @user-jd7ub3tq2b Před rokem

    Super detailed video, thanks. It would be cool if you showed how to add Google authorization to this

  • @user-kd5sv7mc1k
    @user-kd5sv7mc1k Před 10 měsíci

    you are the best pro, thank you :)

  • @andresfcuellarc
    @andresfcuellarc Před rokem

    Excellent thanks very mucsh

  • @dev.caixeiroviajante
    @dev.caixeiroviajante Před rokem

    Vlad, thanks for the great and awesome content.
    Now, which theme are u using ? haha

  • @OleksandrDanylchenko2k

    Thanks so much!

  • @Ganalaras
    @Ganalaras Před 2 lety +1

    You're awesome. Thank for this tutorial. Btw, what do you use autocomplete in command line ?

  • @bartoszpierdolny6978
    @bartoszpierdolny6978 Před 2 lety +3

    Nice video, Vlad!
    Btw, did you try to use autogenerated prisma DTOs? Do you know how we can validate, cover in documentation (and all that stuff) them by any chance?

  • @juanestebancalderon6520
    @juanestebancalderon6520 Před 6 měsíci

    Nice!

  • @VizivikRu
    @VizivikRu Před 2 lety

    Thanks, a lot!!!

  • @jamaludinsalam
    @jamaludinsalam Před rokem

    Thankss 👏

  • @ngodinhloc
    @ngodinhloc Před 2 lety

    Awesome tutorial. Thank you so much! Can you please make a tutorial about CICD with NestJs and Prisma.

    • @CodeWithVlad
      @CodeWithVlad  Před 2 lety +1

      Thank you for the compliment and the suggestion. It’s an interesting topic. I will see if i can cover it in a future video.

  • @jaesunghong6367
    @jaesunghong6367 Před 2 lety +1

    I'm so glad that you are using the same tech stacks as me. Nest.js + Prisma is so powerful. Can you make a video about deployment? I'm so curious about what cloud provider you use and how you handle the deployment.

    • @CodeWithVlad
      @CodeWithVlad  Před 2 lety +1

      Hey! Thank you for your comment and suggestion. This topic is definitely planned! For deployment I am using aws and hetzner cloud

    • @Tobias-mz7nm
      @Tobias-mz7nm Před rokem

      @@CodeWithVlad im waiting :D

  • @abelromeroruiz5702
    @abelromeroruiz5702 Před 2 lety

    Good video