React Security Crash Course 2022

Поделиться
HTML-код
  • Опубликовано: 25 ноя 2024

Комментарии • 28

  • @137dylan
    @137dylan 3 года назад +9

    Pretty amazing how you went from 0 just over a year ago to releasing videos like this. You must have natural talent for programming, and React in particular.

    • @TechbaseDev
      @TechbaseDev  3 года назад +6

      Thanks Dylan!
      Throughout the initial process (let's say the first 6 months) I've never really felt that I was picking up things very easily.
      Especially when I started with React I had a lot of issues with understanding the most basic things. Also during the coding bootcamp (that I left after about ~3 weeks) I was one of the weaker, if not weakest student.
      I think it was eventually due to the (crazy) amount of time I spent understanding things that got me to the point where it became a lot easier to pick things up.

  • @selvadurais1791
    @selvadurais1791 2 месяца назад

    Must follow these on application

  • @codeaperture
    @codeaperture 3 года назад +6

    A legend is Born. Glad your collaboration with Traversy. That was great 👍

    • @TechbaseDev
      @TechbaseDev  3 года назад +1

      Thanks so much Willi. I'll make sure I keep the new content going 😀

    • @codeaperture
      @codeaperture 3 года назад

      @@TechbaseDev Hoping Jamstack (Serverless)
      Testing and many more

  • @timkelly9886
    @timkelly9886 2 года назад +2

    Phenomenal crash course, thank you for all the work you put in

  • @kk-kw7yx
    @kk-kw7yx 2 года назад +1

    One of the best courses!!! TY!

  • @Shou06
    @Shou06 3 года назад +3

    Much needed

  • @Blazephoenix
    @Blazephoenix 3 года назад +2

    Great course. Thanks!

  • @alicefraser5799
    @alicefraser5799 Год назад

    Awesomely useful stuff ! Thanks so much for sharing. You got yourself another subscriber :)

  • @chhaysocheret3263
    @chhaysocheret3263 Год назад

    Great video!!!🙏

  • @khantradingsniper6422
    @khantradingsniper6422 2 года назад

    This is one of the best video i have found about react security. can u also upload more advance security videos plz?

  • @mahendranath2504
    @mahendranath2504 3 года назад +4

    Nice thanks you 👍🏼❤️🎉🙏 , can you please can you do a video on session Cookie application , appreciate your help and support

    • @TechbaseDev
      @TechbaseDev  3 года назад +1

      Yes, sooner or later I'll start adding more backend related (NodeJS) content to the channel as well to eventually dive into full stack projects.
      I'm planning to do this next year!

    • @mahendranath2504
      @mahendranath2504 3 года назад +1

      @@TechbaseDev thank you so much 👍🏼🙏🎉 ,we support you

  • @arupde6320
    @arupde6320 3 года назад +2

    keep uploading ..

  • @mohammadMakarati
    @mohammadMakarati 3 года назад +2

    Thanks so much .. you give us a very important information.. keep going !

    • @TechbaseDev
      @TechbaseDev  3 года назад

      Thank you so much, glad you liked it!

    • @mohammadMakarati
      @mohammadMakarati 3 года назад

      @@TechbaseDev sorry to take your time .. I want to ask.. I am going to make a register and login with react native .. And i am searching about security for APIs.. Is there any good practice to make API more secure and good? Or the security in authentication and authorization ?
      Thank you

    • @TechbaseDev
      @TechbaseDev  3 года назад

      Absolutely!
      When it comes down to authentication it's probably safe to let the server respond with a session cookie that use both the "http only" and "same site" attribute (27:09). As for authorization: it's a good idea to focus on the "principle of least privilege
      " (en.wikipedia.org/wiki/Principle_of_least_privilege).
      You want to make sure that you do proper authentication checks for incoming requests.
      There's many other things of course, the "OWASP API Security Project
      " might be a good starting point (owasp.org/www-project-api-security/).
      PS I'm planning to do a security crash course for NodeJS (and just servers in general) next year.

    • @mohammadMakarati
      @mohammadMakarati 3 года назад

      @@TechbaseDev okay.. Thanks so much.. I will try all that principals.🌷🌷

  • @subinchaliyath6301
    @subinchaliyath6301 2 года назад +1

    Thanks

  • @Shou06
    @Shou06 3 года назад

    Start using nonce in order to authenticate scripts in your app so that no cross scripting is possible in your app

  • @akalrove4834
    @akalrove4834 2 года назад +1

    Good

  • @mdnahidahmed4845
    @mdnahidahmed4845 2 года назад

    good video

  • @szymonoleszek2086
    @szymonoleszek2086 3 года назад +1

    hey, nice content thank you. I've noticed some issue with AppScan in VSC in react projects, code is losing colorizing while the extension is enable and it's reporting problems with syntax that doesn't really exists, very promising tool but cannot use it :/

    • @TechbaseDev
      @TechbaseDev  3 года назад

      Hmm, that's strange. There's always Snyk which you can use. Overall it's better supported compared to HCL.