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.
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
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.
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!
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 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!
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
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.
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
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.👍👏
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!
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!
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!
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 :)
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.
ปีที่แล้ว +2
Parabéns Pedro pelo tutorial!!! Muito detalhado e completo. É ótimo ver colegas brasileiros produzindo conteúdo de excelência como este!
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
@@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.
createUserWithEmailAndPassword() is actually for creating a new user account, not signing into an existing account, associated with the specified email address and password.
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
example?
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
Wow .. i dont understand why anyone on youtube cant teach with such intuitiveness like you do Pedro, honestly thank you!
Thanks man! Really appreciate it
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.
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
usually, I don't Like any YT videos BUT here I have to, and you deserve it.
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
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!
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 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!
Thanks!
Thank you so much for the support!
This is the perfect timing thank you !
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.
here from the odin project and this video helped me so much more in understanding firebase compared to the recommended guides/docs.
same here😂😂
You made a video that I tried to find for a long time! Thank you for absolutely clear information about working with firebase!
Love from India❤️❤️❤️❤️...... YOU ARE GIVING THAT CONTENT FOR FREE....WHICH Universities are not giving even after taking lacs of money as a fee
I was stuck on authentication for a day and your video solved all problems within 5 minutes! You are a saviour
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
best firebase course on TH-cam
Most simplified explanation for beginners as well as revising the concepts of firebase along with react.
You just pointed out all the core things and It can't be more simpler than that. Great content. Good work. Thanks
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.
This is a perfect tutorial for getting started with firebase , It covers all the basics . Much Thanks Pedro!!
😇
You're the best down to earth guy on TH-cam. Stay that way. All the best!
2024 and still relevant! Thank you so much for giving this much of value in the course!
you have no idea how much you've helped me just now!!
this video is amazing even i am not native speaker i understand it and i did not even notice how time past so quickly
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 :)
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.👍👏
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!
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"
Just became a fan of urs mate !!
u helped me alot in my task ...thanks pedro keep Going
Thank you so much for covering all important aspect of the firebase! it was so helpful!
Man!, You're one of the greatest teachers out there. Great work! Hope we can get to collaborate on a project someday!
You are amazing . I 'm clearly understood because your explanation was very good ❤️❤️
I was looking for a complete firebase + react course, thank you! ~
Amazing video ❤❤, i really like long videos like that when they teach you everything.
Thanks alot pedro Your content helps me out alot I find it hard to find updated videos on firebase
Thanks man this helped a lot to my project.
😊
Glad it helped!
Excellent tutorial. Didn't know firebase before this.🔥👊🏼
Woah, this was fantastic and everything I was looking for. Thank you so much for putting this together!!!
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!
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 :)
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.
Parabéns Pedro pelo tutorial!!! Muito detalhado e completo. É ótimo ver colegas brasileiros produzindo conteúdo de excelência como este!
The long awaited video. Thanks man.
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
how was I just looking back to your original firebase video to find out you just created a new video 🤠
Great work, I actually never new what firebase was before this video, Thanks Man...
Best tutorial on firebase, is this the same for react native as well?
Amazing tutorial ❤❤
Very well explained, worth every minute, thanks dude
great video. You explained key concepts very well.
I'm glad you found it helpful!
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
Excellent video. This is a must watch for a beginner with the technology. Obrigado Machadão :)
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.
Thanks a million Pedro for proving such a helpful video. I highly recommend your channel to others.
Time to learn Firebase I guess. Thanks, bro
You did very well. Best tutorial I can say. You complete within very short time. Amazing. Make a tutorial for complete ecommerce website.
Hella good tutorial, probably one of the best out there. Super simple to understand.
just thanks man. you made my sunday ❤️
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.
bro I have got to say you are one of the best in education.
Great tutorial on firebase with react !!! Please keep on recording and teaching us... 1000 thanks ...
Thank you! i very love your tutorials. they are the most understandtable for me
It's exactly what i need, thank you alot, best wishes
Excellent video. You teached me every single thing that i need, thank you so much . You deserve more compliments than you get
Glad I could help!
Make similar videos on appwrite, supabase, pocketbase or even a mern stack tutorial. Nice videos bro.
Perfect, exactly what i have been waiting for..
Thank you so much for the video. It was easy to understand for a beginner like me.
Thanx login form executed succesfully .
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.
createUserWithEmailAndPassword() is actually for creating a new user account, not signing into an existing account, associated with the specified email address and password.
You made firebase look so awesome!!!
Make a best practices and advanced tips & tricks pls
🥺
awesome explanation dude.
Great video man! Thanks a lot!
Best video on TH-cam 💖
bro you are an excellent teacher. thank you verymuch
thank you pedro, you made easy to start firebase as begineer.please give a fullstact project using react,firebase.
You are a living legend
thanks a lot. really helpful
Very good tutorial Pedro... keep it up!!!
the best tut i came across!
Great Video, vey helpful, very well explained, Watched complete video, deserve appreciation...
Thanks a lot!! This was really helpful!
This video is fantastic. I really love it cos it made everything so easy for me .
Thank you for your effort. Very useful course 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)
Finally i can perform now crud after this thanks a lot
hey bro thanks for your videos.. i built my 1st firebase react app using your videos..
You are a life saver, thank you.
thank you for simple and valuable tutorial.