This video was exactly what I needed!! I've been confused with authentication and the bunch of different ways to do it and a video that cuts all the extra stuff and shows you the basics of how it works was perfect. Thanks so much, hope you make more videos was sad to see this was your latest on in a year.
Amazing video! I love how there are people like you that go straight to the point and explain in plain English. Thanks a lot for the video! PS: Better teaching methods than my university (will definitely suggest to my friends)!
You deserved more subscribers. You are a good example on what the developers should follow. I haven't followed yours but I created something that is similar and in tsx.
Is it possible to work things this way using createBrowserRouter. Interested to understand this more, and see if I can use child routes with this kind of setup.
sir you should create this in full playlist format that we can get more clearity for beginners its bit hard to understand everything, you should also connect it with backend that what routes are set in backend etc.
This is easy enough to do with creating a default route pointing at the login page. That means any route not created based on their status, will show that page instead.
Cool video! Simple and well explained! It would be very helpful to see an implementation with local storage as well as role-based authorization. Regardless, thanks for the awesome content!
This is because in that tutorial we are not storing that the user is authenticated in the localStorage or a cookie. This means a refresh of the page restarts the state. I am working on a video to expand on this authentication method and show how to start storing user details including if the user is logged in so that a returning user might be automatically authenticated
Isn't this method easy to bypass? User can easily change ahte isAuthenticated state or isPrivate consts. Is it okay to protect client routes like this and just protect private data on the backend?
In theory. the video was meant to help people that were struggling with the exact structure of routes and private content. There are many other things that should be used for security
heyy kodie how about make a simple tutorial that is in ts not js and handle auth via jwt cookie not token to be more secure then use R.R.D v6 to protect the routes
@@kodieCode Btw remember my words your channel will grow super fast cause everything is good the audio the video's quality and also the content keep up the good work
You would need to add an additional object against the user to define their role and then load the routes depending on what that role is allowed to access.
This video is just pure gold! Straightforward, concise, without any useless information. Amazing!
Glad you enjoyed it!
This video was exactly what I needed!! I've been confused with authentication and the bunch of different ways to do it and a video that cuts all the extra stuff and shows you the basics of how it works was perfect. Thanks so much, hope you make more videos was sad to see this was your latest on in a year.
thanks for the comment. More coming in October now I have more time
Amazing video! I love how there are people like you that go straight to the point and explain in plain English. Thanks a lot for the video! PS: Better teaching methods than my university (will definitely suggest to my friends)!
Really appreciate the feedback!
You deserved more subscribers. You are a good example on what the developers should follow. I haven't followed yours but I created something that is similar and in tsx.
I appreciate that!
straight and easy to understand thanks for the video.
Thanks for giving me that feedback
Good luck with your channel. Liked your content
I appreciate it!
Gold Gold Goldberg !! Happy to find this channel !!
Appreciate the comment.
Finally someone who doesn’t code in the video just explains the code
This is a super useful video!!!, went through it, understood how everything is done, great video!!!
Thanks for the comment.
Nice, simple, to the point.
Thanks!
Glad it helped!
your content is amazing seriously. i learned so much from this single video of yours,
Awesome, thank you!
How do we add google auth to this?
I'm planning to do a video on various third party Auth libraries including Google very soon.
@@kodieCode Thanks!
@@kodieCode waiting for the video man!!
I enjoyed the video and your accent, as well as learned from you
Thanks for the feedback!
Is it possible to work things this way using createBrowserRouter. Interested to understand this more, and see if I can use child routes with this kind of setup.
It is, yes, React Router has moved on a bit since this tutorial but it's still relevant.
yo bro
thank u sooo much, i every day look yt, and try to learn something new, and u speak very easy for me! (sorry for my eng)
gl bro at ur way!
Thanks for the kind comments!
Great and concise 👍
Glad it was helpful!
i love it great knowledge been passed here, thanks a lot
My pleasure!
Thanks for the helpful tutorial!!!
Glad it was helpful!
Great content. Please release a video about refresh and access tokens
Thanks for the suggestion. I'll be working on that video soon
Hey @@kodieCode any update?
Excellent content!!!!! Thank you very much 🤓 I would love to see another tutorial with your implementation of local storage.
Great suggestion!
@@kodieCode it looks like maybe you're not making these videos anymore, but consider this comment as another vote for a video on the local storage
Thank you! The map part is genius
Thanks for feedback
It's amazing! thank you very much!
Glad you like it!
sir you should create this in full playlist format that we can get more clearity for beginners its bit hard to understand everything, you should also connect it with backend that what routes are set in backend etc.
bcz in react js authentication is most confusing part for beginners
Noted
Please I need a tutorial on how to use localstorage with this
This was with LocalStorage. I'm working on a JWT version
Why are the extension files `.js` instead of `.jsx`?
Doesn't matter it's a framework
It won't make an difference.
can you help me to do same thing in next.js,
i have to do with user role based , their tho 2 user role , so how to do in next.js with typescript?
I don't use next.js as it's best IMO for websites and I'm mainly working on backend and admin panels
Hi @kodie,
Great content here. However, I'd prefer to show the login page if a user tries to access a private page
This is easy enough to do with creating a default route pointing at the login page. That means any route not created based on their status, will show that page instead.
Cool video! Simple and well explained! It would be very helpful to see an implementation with local storage as well as role-based authorization. Regardless, thanks for the awesome content!
Great suggestion!
Thank You so much!!!
You're very welcome!
can you make a new video on how not to make user logout whenever the page refresh?
It's as simple as looking up the user details from the localStorage on a page reload.
why on refresh it does not hold the private links? It resets and I have to click on "login" again so they pop up
This is because in that tutorial we are not storing that the user is authenticated in the localStorage or a cookie. This means a refresh of the page restarts the state. I am working on a video to expand on this authentication method and show how to start storing user details including if the user is logged in so that a returning user might be automatically authenticated
thanks you for this tut
Welcome 😊
Great content, thx!
Thanks for the feedback
Really nice video, Thankyou.
Glad you liked it!
Good work!
Thanks!
How can I Implement roles of users?
You would just need to add additional layers to the user object and define that in the routes
Isn't this method easy to bypass? User can easily change ahte isAuthenticated state or isPrivate consts. Is it okay to protect client routes like this and just protect private data on the backend?
In theory. the video was meant to help people that were struggling with the exact structure of routes and private content. There are many other things that should be used for security
Nice ❤
Appreciate it!
heyy kodie how about make a simple tutorial that is in ts not js and handle auth via jwt cookie not token to be more secure then use R.R.D v6 to protect the routes
Great suggestion. Thanks for the feedback.
@@kodieCode
Btw remember my words your channel will grow super fast cause everything is good the audio the video's quality and also the content keep up the good work
yes pls do that user key and session expire thingi we do want it
It's possible to add a user lookup to the database on page load but I will add more to this soon
thank you
Welcome!
how to add role user sir
You would need to add an additional object against the user to define their role and then load the routes depending on what that role is allowed to access.
I suggest that you make code along tutorials, with more catchy thumbnails. Your content is great, you will grow fast.
Thanks for the tip
rooutah
Thanks
Thank you
You're welcome