Legendary video. The other videos I found about Firebase authentication went fast and took everything for granted, but you took your time and explained every step very clearly. Keep it up dude!
Man you literally helped me get through my final project you're so great at explaining this kind of content shouldn't be free!!! but im happy it was free when I needed it!
@@codecommerce thank you my man… I’m combining some parts to understand react much beter. You made me get my diploma, i made a pokemon application, and a criteria was “authentication” 👊🏽 i am wondering, are you gonna make a vid on how to deploy on firebase, and use some features like “test environments” to keep working on the application, as the mail app is still running on the cloud?
The beauty of your channel is you explain all the things from scratch. Now I'm so confident that I don't have any question about firebase email pass authentication. Thank you so much. If possible make some project ( e-commerce, House rent, Restaurant etc ) using react tailwindCss and firebase .
In the protected route, do: const navigate = useNavigate(); if (!user) { navigate("/signin"); } because if you do: if (!user) { return ; } it will send you to the signin page before the user "arrives" even though you are logged in
Was looking for a video to break me out of my Authentication App bog, and your tutorial worked like a charm! Thanks again for your great content! I also enjoy the organic debugging process. See bug === bug goes boom. Love it! hahaha
thank you so much brother, the best video about this subject. there is nothing close to it and i've watched tons of it. keep explaining as you do, it''s great!
Awesome tutorial, the context approach was truly inspiring! For the flashing content of your protected route, change the initial state of "user" to "null" instead of an empty object. That fixed it for me 💯
This is gold, I was looking everywhere for a Firebase v9 / React auth tutorial ... oh and from a fellow Paramedic... Strong work, great channel, thank you!
good video, thanks ! i also got stuck at "createUser is not a function", between 33:45 and 35:40 you can see that at the latter , value={{createUser}} is written like so , but not earlier in the video, so if you were coding along, like me lol, others might get stuck there as it will likely not work until you get there. it might be helpful to point out the change? i still have to finish applying the code to my own page, but i hope i won't have any more problems now 😅 again, thanks for the vid !
Thanks so much! This really helped me to understand the authentication process. I had been completely stuck and overwhelmed but this video really made sense and made it easy.
Came across your channel accidentally and I like your style so subscribed :D. Although I haven't watch any your videos to the end but I hope I won't have to unsubscribe ;)
@27:56 yeah we love this feature, you should use wrap settings for your workspace and perhaps a linter to make it span on multiple lines when you save your code.
for anyone who is curious if you want a password confirmation while signing up make a new div with a new label and input type password and make a new useState for the password confirmation. Then in handleSubmit put this: const handleSubmit = async (e) => { e.preventDefault(); setError(""); if (password === passwordConfirm) { try { await createUser(email, password); navigate("/account"); } catch (e) { setError(e.message); console.log(e.message); } } else { setError( "Firebase: Passwords do not match. (password and confirmation do not match)" ); console.log( "Firebase: Passwords do not match. (password and confirmation do not match)" ); } };
I have a question, which might seem stupid. Im „quite“ new to this : In the Form you used the onChange to set the States. Wouldnt that mean, that the State gets updated with every Keystroke? I have seen different approaches with useRef and FormData. Are there certain downsides for using useRef or FormData that i am Not aware of? Great Video, really helped me :)
the firebaseConfig does not contain sensible information. Each of the firebase services have various security rules that can be used. Like read/write rules for databases/storage or authentication check for cloud functions.
nice that u made an updated version. In older tutorials you had to import firbase from "firbase/app" and i used to get errors because i was on the latest versions. Now you showed me initializeApp stuff, thx earned a sub
I've done this video 3 times. Great tutorial. Are there other cleaner ways of doing the protected routes though? I have been looking everywhere to see some options
Awesome ! Thank you ! But I have a question. Why the guy from firbase video said "it's totaly fine to include api key in client side" ? It's a new feature of firebase ?
Legendary video. The other videos I found about Firebase authentication went fast and took everything for granted, but you took your time and explained every step very clearly. Keep it up dude!
Man you literally helped me get through my final project you're so great at explaining this kind of content shouldn't be free!!! but im happy it was free when I needed it!
Thank you April! I’m just trying to help others learn and save time! 🙌
Same here
Look, I don't think you know this, but your videos are SO clear and SO easy to understand. Keep it going, please!
Thank you! 🙌
Bro you are by far the best and most easy to watch developer out there.....
Thank you Ivan! Much appreciated!
@@codecommerce thank you my man… I’m combining some parts to understand react much beter. You made me get my diploma, i made a pokemon application, and a criteria was “authentication” 👊🏽 i am wondering, are you gonna make a vid on how to deploy on firebase, and use some features like “test environments” to keep working on the application, as the mail app is still running on the cloud?
The beauty of your channel is you explain all the things from scratch. Now I'm so confident that I don't have any question about firebase email pass authentication. Thank you so much. If possible make some project ( e-commerce, House rent, Restaurant etc ) using react tailwindCss and firebase .
Thanks! More coming soon!
This is some God Level Tutorial.i have watched a lot of tutorials for firebase but did'nt get it but now❤❤❤❤❤
Thank you So much!
In the protected route, do:
const navigate = useNavigate();
if (!user) {
navigate("/signin");
}
because if you do:
if (!user) {
return ;
}
it will send you to the signin page before the user "arrives" even though you are logged in
Thank you my friend! I’ll make the update! Good catch :)
Thanks. This fixed my app from logging out user after refreshing the page.
Best tutorial I ever watched. I love your voice, your pace and how well you explain things.
Thank you Andrea 🙏
Was looking for a video to break me out of my Authentication App bog, and your tutorial worked like a charm! Thanks again for your great content! I also enjoy the organic debugging process. See bug === bug goes boom. Love it! hahaha
I was stuck on the authentication of my project but your tutorial really came through, really, good, explanatory tutorial
Thank you🙏✌️
Great video. Your explanations were clear and easy to follow so coding along was a breeze. Keep the amazing content coming for us!
Thanks dude!
I like how fast you were explaining in a clear way the medular of the auth with firebase and react.
Best tutorial on Firebase Authentication, extremely clear!
Never have I seen such a great straight forward video. Thank you very much
Thank you dude!
Awesome project for the beginner. Thanks, I really appreciate your work :)
والله انك شيخ قومك ، يومين أجرب حل للتحديث الأخير و انت جبتها بكم دقيقه الله يسعدك يا شيخ thank you bro , you saved me
Thank you!
You da best man! Had a project on hold for a month because I couldn't get this down. Keep up the good work!!
thank you so much brother, the best video about this subject. there is nothing close to it and i've watched tons of it. keep explaining as you do, it''s great!
Thanks Misael!
Clint is the goat. Best vids of updated react content.
Great video. Would be amazing to see a role-based authentication video up soon.
Thank you! User admin role video coming!
Awesome tutorial, the context approach was truly inspiring! For the flashing content of your protected route, change the initial state of "user" to "null" instead of an empty object. That fixed it for me 💯
Thank you for the feedback man - I was unaware. That’s what it’s about right there- we are all here to help each other. Much love! 💪
Hugeeeee
You’re amazing 🙌🏾
I wish I found you earlier but all the same, I’m grateful😍
I hope you read the comments
Thanks for the simple explanation of this topic. Your channel is great and helps a lot. Submission 10 out of 10
Sure do man! Much appreciated sir!
Finally completed this tutorial! I love how natural how it is, errors?! Booom, we fix em together
Haha thanks man!!
This is gold, I was looking everywhere for a Firebase v9 / React auth tutorial ... oh and from a fellow Paramedic... Strong work, great channel, thank you!
No way dude that’s awesome!! I still do some work as a medic - I love it (usually 😂)
The best video on this topic on youtube right now. Subscribed. Keep it up man
Wow, thanks!
My dudeeee , am half through and this is eppiccc, thank you for sharing this
great tutorial, love the aggressive breathing
Great video! Hope you will get more followers.
Thanks mark!
Bro your really good at guiding us through the coding, keep on going. You'll get 50k soon
One of the cleanest tutorials I've watched. Thanks for sharing your knowledge. Respect+
Duuuuuuuude!!! Whenever i see your new video i am so excited to learn some new stuff! Keep it going for us bro! I appreciate that. Thank you!
Thanks dude! More to come!
Your channel is going to blow up, just wait on it. Always pushing out relevant and fire content 🔥🔥
Thank you dude!! I’m just trying to share what I’m learning.
I will say just awesome dude ,i have been looking for this for past 2 days thanks 🙏
Underrated channel. I love watching the video and looking at the source code when I'm debugging. Save so much time as a result.
Much appreciated! Thanks dude!
Wow.. really helpful this video tutorials for beginners... can start quickly their career.. thank you so much sir..
Legendary tutorial much appreciated. Buying you a virtual coffee! Tahnks mate
MiVoodoo! Wow dude that’s so awesome! Thank you for supporting the channel. Much love!!
I came across your page early this week. You are doing a great job. Thank you ❤️
Thank you so much!
good video, thanks ! i also got stuck at "createUser is not a function", between 33:45 and 35:40 you can see that at the latter , value={{createUser}} is written like so , but not earlier in the video, so if you were coding along, like me lol, others might get stuck there as it will likely not work until you get there. it might be helpful to point out the change?
i still have to finish applying the code to my own page, but i hope i won't have any more problems now 😅 again, thanks for the vid !
Thank you for this. Without you, I may still be trying to figure this one out.
thanks sir this tutorial teach me a lot of new things that i want to put in my final project
Thank you Han Solo!! Love the name too 💪
Thanks so much! This really helped me to understand the authentication process. I had been completely stuck and overwhelmed but this video really made sense and made it easy.
Dude keep posting new videos
I always learn something new !!
please make a project on ecommerce (or just a shopping cart to get the feel of it ! )
Absolutely man!
Came across your channel accidentally and I like your style so subscribed :D. Although I haven't watch any your videos to the end but I hope I won't have to unsubscribe ;)
Thank's dude!
Very helpfull and easy to watch! Thanks man! 🙌🙌🙌
Thanks dude!
Thanks man! love your energy
Much appreciated dude!
wizard!!! thanks my men amazing video easy to follow and no bs, everything is clear
Just found this gem; you are awesome thank you!
Great video, straight to the point. Thank you so much!
Thanks for you video, really helped me getting started with Firebase!
good stuff , but next time note no one really care learning html tags and tailwind css when they already searched for this video
Yeah, you’re probably right
nice video as always!! cant wait to see ur channel turn 10k subs 🔥🔥
I hope so too!
Love how complete you make the videos, great tutorial
Thank you CP
Thank you , Your videos are a blessing !
It was really a great tutorial, straight to the point! congrats!
Thank you sir!
Love your tutorials! Keep doing more!
Thank you!
You are the man for this video, thank you!
Thanks Alex!
One of the best tutorial 🤘
Thank you dude!
Thank you very much sir. I can now protect any route I want.
Thank you so much man, I've learned a lot from this video.
Thank you my friend!
Really great video 😊
Thank you! 😀
Excellent!!! This is what I needed it.
Awesome Sergio!
@27:56 yeah we love this feature, you should use wrap settings for your workspace and perhaps a linter to make it span on multiple lines when you save your code.
Thank you Muhammad
Amazing tutorial, very clear and easy to follow with good explanations. Thanks!
Glad it was helpful!
Great video man, thank you so much. Very well explained
Thank you Dan!
Thank you so so much. This is the coolest thing ever!
thank you so much sir its very helpfull my university project
Thank you soo much for this video, could make my submission on time thanks to this.
Nice video. kindly make a video on role-based authentication react JS and Firebase
Maannnnn you're so AMAZING, omg, thanks so much
Awesome dude thank you!
for anyone who is curious if you want a password confirmation while signing up make a new div with a new label and input type password and make a new useState for the password confirmation. Then in handleSubmit put this:
const handleSubmit = async (e) => {
e.preventDefault();
setError("");
if (password === passwordConfirm) {
try {
await createUser(email, password);
navigate("/account");
} catch (e) {
setError(e.message);
console.log(e.message);
}
} else {
setError(
"Firebase: Passwords do not match. (password and confirmation do not match)"
);
console.log(
"Firebase: Passwords do not match. (password and confirmation do not match)"
);
}
};
my signin page is getting blank when i wrap with AuthContextProvider what is the error????
this video alone worth the sub
Thanks a lot for your clear explanation
Thank you my friend!
Thx for the vid' gym bro !
Boom! Liked and Subscribed :)
Boom! Good stuff man
Thanks man!!!
Epic video! Thanks so much!
Glad you liked it!
thank you from Uzbekistan
Uzbekistan- that’s awesome dude! 💪
thanks man you really helped a lot
Great video👍👍
thank you😍
very good tutorial i tried a few more eventuly
successed with this one
Awesome!!
This was great! Thanks.
I have a question, which might seem stupid. Im „quite“ new to this :
In the Form you used the onChange to set the States. Wouldnt that mean, that the State gets updated with every Keystroke?
I have seen different approaches with useRef and FormData.
Are there certain downsides for using useRef or FormData that i am Not aware of?
Great Video, really helped me :)
Thank you for the video, I have learned a lot, can you for the next one have a full featured CRUD + authentication done with React and Firebase?
Sure thing!
thanks this was of great help 🙌
Great video ,I wish More
the firebaseConfig does not contain sensible information. Each of the firebase services have various security rules that can be used. Like read/write rules for databases/storage or authentication check for cloud functions.
Thank you mate
Anytime man! Thanks for watching 🙏
you are number 1 !
great content! I’m currently stuck at signing up, it is returning createUser is not a function
Do you have a link to your code? GitHub maybe?
Check your value in UserContext.Provider. Make sure there are double {{ }}. Also make sure you spelled it correctly
Great Video!
Thank you very much, you rule!
Thank you my friend!
nice that u made an updated version. In older tutorials you had to import firbase from "firbase/app" and i used to get errors because i was on the latest versions. Now you showed me initializeApp stuff, thx earned a sub
tahnks very much
I've done this video 3 times. Great tutorial. Are there other cleaner ways of doing the protected routes though? I have been looking everywhere to see some options
Many different options for protecting routes client and server side!
hey can you please provides your notes it would be a great help
your teaching is really good
Great video
Awesome video ++++++++++++++++++ 😃
Awesome ! Thank you ! But I have a question. Why the guy from firbase video said "it's totaly fine to include api key in client side" ? It's a new feature of firebase ?
best practice to never reveal API key. PERIOD! For your own safety.