Just completed your tutorial and brother you were awesome, i really learned a hell lot of stuff and fell in love with react once again!!! thanks bro! 💙💙🔥🔥
For anyone still using this tutorial: make sure to wrap the `collection()` function or any other firebase function at the top of a component in a useMemo if it doesn't need to be called every time a component re-renders. The way the code is written here, `collection()` will be called for every change to any of the text inputs and counts as a firestore read which contributes to billing.
I have completed one-fourth of the video, hands down one of the best tutorials I have ever seen. You will find most tutorials just "telling" you write the code, but this guy explains everything the whole way through. Thank you.
00:00 Complete Firebase in React course covering important topics. 06:34 Setting up Firebase and installing the Firebase SDK for a React project 12:54 Learn the deployment process of Firebase project 19:33 Implementing authentication with Google in Firebase 25:52 Firebase authentication and Firestore 38:45 Fetch all documents using getDocs function from Firebase Firestore collection 45:02 Creating a UI for adding movies 58:33 Demonstrated functions to delete and update documents in Firestore using React. 1:05:11 Learn how to implement different rules in Firestore Database. 1:17:45 Firebase Storage allows for easy file storage and retrieval 1:24:05 Firebase provides easy file storage and hosting services
The reason you have to press space on the firebase init for hosting, you can select multiple things, you can do hosting and modify the firebase storage and firestore rules and anything else you want all in one go.
Thanks for covering firebase security in this video. Many youtubers just create a firestore database in test mode and they don't tell us about production mode and our database is expired after a month. It was highly appreciated bro, keep it up.
I finished the tutorial, and I'm going to review it again. Your explanation about firebase is so simple that even a kid can follow! I appreciate this mate!
Thank you for showing me the deployment process, I never used "npm run build" before. I also never deployed anything with firebase before. Once again, Thank you!
I'm doing The Odin Project and I can not thank you enough for this video! Their curriculum is solid, but their Firebase introduction lesson is poor. They linked to some seriously lacking and outdated Google Codelab. After a few days of headbanging the wall I found this. Watched the whole thing and it's all so much clearer now! Thank you so much!
Thank you so much you saved my life i have learned the whole front end part and have been searching for a long time to learn backend watching tutorials of node and express where i face a lot of errors each time. I was planning to make a social media app but for the backend part i was struck for a long time and now i can make progress easily. Thanks again man , really appreciated the way you teach.
Amazing videos I have been trying to learn firebase for a while now and I find that people over explain things I love the way you keep thing short and straight to the point Keep up the good work
Pedro THANK GOD I found your channel. I am interviewing for my first tech position and because of the way you explain these techniques ect. I was able to learn code! I cant say thank you enough. If your ever in Chicago dinner and beers on me
Thanks for amazing tutorial! At the end of the video it is enough to edit firebase.json and change public folder to "build" instead of running firebase init :)
just finished this video, I can loudly say that you are a great tutor indeed really enjoyed your tutorial. keep on doing great job we really appreciate videos like this.👍👏
Cool video, the signin method is actually signup method, for signing in after logging out firebase gives signInWithEmailAndPassword function, I have not completed the video yet so I am not sure if it was corrected in future, thanks for the tutorial, it was clean.
Muito bom, Pedro! Tava com dificuldade em colocar meu projeto em produção com o firebase e esse vídeo ajudou bastante. Inglês e didática impecável. Parabéns!
So well done! Great pace, great explanations, just great all around!! Thank you for this, subscribed, looking forward to seeing what else you've got up!! Amazing work!
@@PedroTechnologies Almost at the end of the video, you explained things I had to dig threw the docs for, no one on YT has made a tutorial this good and concise yet. Even though I know a good chunk of this information, I enjoyed watching it. Keep making videos like this and you will be the top Tutor for coding on here.
for the sign in using the email method you actually made a register form not a sign in so take care as there is another method called signInWithEmailAndPassword function which is the one responsible for login
createUserWithEmailAndPassword() is actually for creating a new user account, not signing into an existing account, associated with the specified email address and password.
No need to give me anything hahaha your support is enough! I don't have patreon, but for those who really want to support me there is the super thanks feature on youtube
There is cut at 1:14:41 and we are left with nothing explained later on, and it seems you couldn't figure out why deleting didn't work. Anyways, I learnt a lot, thanks!
Why do I keep getting the: Cross-Origin-Opener-Policy policy would block the window.closed call. error, after I click on the button with the signInWithPopup func? Thank you for an answer :)
one thing that would help is demonstrate what to do after a user signs up like how to direct new user/signed in to a dashboard or another page. No one takes it to that step which is important
import this hook import { useNavigate } from 'react-router-dom'; then add navigate function inside singIn function navigate('/'); this will navigate user to home page
Keep exploring at brilliant.org/PedroTech/. Get started for free, and hurry-the first 200 people get 20% off an annual premium subscription.
you never linked out to the video on uploading and viewing pdf files
Just completed your tutorial and brother you were awesome, i really learned a hell lot of stuff and fell in love with react once again!!! thanks bro! 💙💙🔥🔥
Bump this - where's the link? @PedroTechnologies 1:28:55
For anyone still using this tutorial: make sure to wrap the `collection()` function or any other firebase function at the top of a component in a useMemo if it doesn't need to be called every time a component re-renders. The way the code is written here, `collection()` will be called for every change to any of the text inputs and counts as a firestore read which contributes to billing.
Saved my life, thanks!!
I took screen shot of your commnt 😃 and added it to my notes section
never have I ever watched a two hour long tutorial before this. you have some great teaching skills. keep these awesome courses coming.
I have completed one-fourth of the video, hands down one of the best tutorials I have ever seen. You will find most tutorials just "telling" you write the code, but this guy explains everything the whole way through. Thank you.
00:00 Complete Firebase in React course covering important topics.
06:34 Setting up Firebase and installing the Firebase SDK for a React project
12:54 Learn the deployment process of Firebase project
19:33 Implementing authentication with Google in Firebase
25:52 Firebase authentication and Firestore
38:45 Fetch all documents using getDocs function from Firebase Firestore collection
45:02 Creating a UI for adding movies
58:33 Demonstrated functions to delete and update documents in Firestore using React.
1:05:11 Learn how to implement different rules in Firestore Database.
1:17:45 Firebase Storage allows for easy file storage and retrieval
1:24:05 Firebase provides easy file storage and hosting services
The reason you have to press space on the firebase init for hosting, you can select multiple things, you can do hosting and modify the firebase storage and firestore rules and anything else you want all in one go.
Honestly, this has to be the fastest yet the most understandable course for firebase I've ever seen, he just gets to the point with no bs
Thanks for covering firebase security in this video. Many youtubers just create a firestore database in test mode and they don't tell us about production mode and our database is expired after a month. It was highly appreciated bro, keep it up.
then should i always make projects in production mode?
@@AvikNayak_ Yes
usually, I don't Like any YT videos BUT here I have to, and you deserve it.
I finished the tutorial, and I'm going to review it again. Your explanation about firebase is so simple that even a kid can follow! I appreciate this mate!
Thank you for showing me the deployment process, I never used "npm run build" before. I also never deployed anything with firebase before. Once again, Thank you!
I'm doing The Odin Project and I can not thank you enough for this video! Their curriculum is solid, but their Firebase introduction lesson is poor. They linked to some seriously lacking and outdated Google Codelab. After a few days of headbanging the wall I found this. Watched the whole thing and it's all so much clearer now! Thank you so much!
Love from India❤️❤️❤️❤️...... YOU ARE GIVING THAT CONTENT FOR FREE....WHICH Universities are not giving even after taking lacs of money as a fee
Thank you so much you saved my life i have learned the whole front end part and have been searching for a long time to learn backend watching tutorials of node and express where i face a lot of errors each time. I was planning to make a social media app but for the backend part i was struck for a long time and now i can make progress easily. Thanks again man , really appreciated the way you teach.
2024 and still relevant! Thank you so much for giving this much of value in the course!
You made a video that I tried to find for a long time! Thank you for absolutely clear information about working with firebase!
here from the odin project and this video helped me so much more in understanding firebase compared to the recommended guides/docs.
same here😂😂
I was stuck on authentication for a day and your video solved all problems within 5 minutes! You are a saviour
This is a perfect tutorial for getting started with firebase , It covers all the basics . Much Thanks Pedro!!
😇
This is the perfect timing thank you !
Most simplified explanation for beginners as well as revising the concepts of firebase along with react.
this video is amazing even i am not native speaker i understand it and i did not even notice how time past so quickly
You just pointed out all the core things and It can't be more simpler than that. Great content. Good work. Thanks
Happy to see you again my brother! I've been waiting on something dope.
Appreciate that!
@@PedroTechnologies would you be able to help us with NextJs authentication with Firebase then be redirected to the Dashboard?
Amazing videos I have been trying to learn firebase for a while now and I find that people over explain things I love the way you keep thing short and straight to the point Keep up the good work
You're the best down to earth guy on UA-cam. Stay that way. All the best!
best firebase course on UA-cam
Pedro THANK GOD I found your channel. I am interviewing for my first tech position and because of the way you explain these techniques ect. I was able to learn code! I cant say thank you enough. If your ever in Chicago dinner and beers on me
Excelente conteúdo, Pedro! Adoraria mais conteúdos sobre Firebase e ReactJS. Sua didática é muito boa :)
Thanks for amazing tutorial! At the end of the video it is enough to edit firebase.json and change public folder to "build" instead of running firebase init :)
Love the video. You made it super simple. I think I'm now in love with Firebase!
just finished this video, I can loudly say that you are a great tutor indeed really enjoyed your tutorial. keep on doing great job we really appreciate videos like this.👍👏
Cool video, the signin method is actually signup method, for signing in after logging out firebase gives signInWithEmailAndPassword function, I have not completed the video yet so I am not sure if it was corrected in future, thanks for the tutorial, it was clean.
I was looking for a complete firebase + react course, thank you! ~
Thank you so much for covering all important aspect of the firebase! it was so helpful!
Thank you for this incredible tutorial, one of the only ones to explain all the steps
Muito bom, Pedro! Tava com dificuldade em colocar meu projeto em produção com o firebase e esse vídeo ajudou bastante. Inglês e didática impecável. Parabéns!
You did very well. Best tutorial I can say. You complete within very short time. Amazing. Make a tutorial for complete ecommerce website.
u helped me alot in my task ...thanks pedro keep Going
So well done! Great pace, great explanations, just great all around!! Thank you for this, subscribed, looking forward to seeing what else you've got up!! Amazing work!
Thanks alot pedro Your content helps me out alot I find it hard to find updated videos on firebase
Great work, I actually never new what firebase was before this video, Thanks Man...
Thank you! It's very good tutorial for beginners. I tried learn firebase on my own, but it was very hard because the docs sucks.
Woah, this was fantastic and everything I was looking for. Thank you so much for putting this together!!!
Just became a fan of urs mate !!
Man!, You're one of the greatest teachers out there. Great work! Hope we can get to collaborate on a project someday!
Excellent tutorial. Didn't know firebase before this.🔥👊🏼
how was I just looking back to your original firebase video to find out you just created a new video 🤠
Time to learn Firebase I guess. Thanks, bro
Perfect intro to this. Every other video i found had a ton of extra shit in it. This was great. didn't deviate from exactly what I needed to know.
Parabéns Pedro pelo tutorial!!! Muito detalhado e completo. É ótimo ver colegas brasileiros produzindo conteúdo de excelência como este!
Amazing video ❤❤, i really like long videos like that when they teach you everything.
This was great man, thanks for such an informative lesson! This will really help bridge a backend solution for a lot of my front-end work
Make similar videos on appwrite, supabase, pocketbase or even a mern stack tutorial. Nice videos bro.
Best tutorial on firebase, is this the same for react native as well?
I knew I should subscribe to you! This is the exact reason why, its not because you are a super cool Twitch dev x'D
Hahahaha
@@PedroTechnologies Almost at the end of the video, you explained things I had to dig threw the docs for, no one on YT has made a tutorial this good and concise yet. Even though I know a good chunk of this information, I enjoyed watching it. Keep making videos like this and you will be the top Tutor for coding on here.
Excellent video. This is a must watch for a beginner with the technology. Obrigado Machadão :)
The long awaited video. Thanks man.
for the sign in using the email method you actually made a register form not a sign in so take care as there is another method called signInWithEmailAndPassword function which is the one responsible for login
Thank you so much for the video. It was easy to understand for a beginner like me.
createUserWithEmailAndPassword() is actually for creating a new user account, not signing into an existing account, associated with the specified email address and password.
Thanks a million Pedro for proving such a helpful video. I highly recommend your channel to others.
Hella good tutorial, probably one of the best out there. Super simple to understand.
Great tutorial on firebase with react !!! Please keep on recording and teaching us... 1000 thanks ...
thank you pedro, you made easy to start firebase as begineer.please give a fullstact project using react,firebase.
bro I have got to say you are one of the best in education.
It's exactly what i need, thank you alot, best wishes
Thank you! i very love your tutorials. they are the most understandtable for me
it was very useful even if i didnt finish this lecture, becaue all previous vids on YT are with old version of firebase) thanks)
God bless you man your videos are soo helpful. Do you have a patreon or something. I would love to give back for all the value you give
No need to give me anything hahaha your support is enough! I don't have patreon, but for those who really want to support me there is the super thanks feature on youtube
hey bro thanks for your videos.. i built my 1st firebase react app using your videos..
Amazing tutorial ❤❤
Do you offer private tutoring sessions? Because all this back and stuff goes straight over my head.
Great Video, vey helpful, very well explained, Watched complete video, deserve appreciation...
Perfect, exactly what i have been waiting for..
This video is fantastic. I really love it cos it made everything so easy for me .
Finally i can perform now crud after this thanks a lot
You made firebase look so awesome!!!
Very good tutorial Pedro... keep it up!!!
just thanks man. you made my sunday ❤️
bro you are an excellent teacher. thank you verymuch
There is cut at 1:14:41 and we are left with nothing explained later on, and it seems you couldn't figure out why deleting didn't work. Anyways, I learnt a lot, thanks!
The error that was causing this was "request.resource.data.userId", it should've been just "resource.data.userId"
great explanation , you could have just add how to find all that firebase methods from the documentation
You are a living legend
awesome explanation dude.
thank you for simple and valuable tutorial.
Why do I keep getting the: Cross-Origin-Opener-Policy policy would block the window.closed call. error, after I click on the button with the signInWithPopup func? Thank you for an answer :)
Super cool tutorial! Thank you!
Thank you for using proper folder structure. A lot of the best tutorials dont use file proper structure.
Make a best practices and advanced tips & tricks pls
🥺
the best tut i came across!
one thing that would help is demonstrate what to do after a user signs up like how to direct new user/signed in to a dashboard or another page. No one takes it to that step which is important
import this hook
import { useNavigate } from 'react-router-dom';
then add navigate function inside singIn function
navigate('/');
this will navigate user to home page
very well explaining it , thank you for this
thanks a lot. really helpful
Great video man! Thanks a lot!
Thanks a lot!! This was really helpful!
thanks for your video! awesome great job!
You are a life saver, thank you.
nice one pedro
This is really one of the most useful video on the topic if you really want to know how it all works.💚🤘