No video

Firebase - Ultimate Beginner's Guide

  Рет қаралды 1,039,214

Fireship

Fireship

Күн бұрын

UPDATE. See the latest basics video here: • Firebase - Back to the...
Master the basics of Firebase in 20 minutes. In this episode, we run through hosting, auth, firestore, storage, and cloud functions using nothing but plain JavaScript. angularfirebas...
- Firebase firebase.googl...
- CLI Tools github.com/fir...

Пікірлер: 607
@alexandermccomb6444
@alexandermccomb6444 5 жыл бұрын
Firebase is like magic. No one really understands it, but people love watching it happen.
@BilalAhmad-gy5zu
@BilalAhmad-gy5zu 5 жыл бұрын
1:34 Project Creation on firebase console 2:15 Creating project locally 4:45 Firebase Authentication 7:25 Firebase Database 14:50 Firebase Storage 16:52 Firebase Functions
@animetales4767
@animetales4767 4 жыл бұрын
can someone help me here? I would like each of my users to have their own unique token, but I see that all the users I create on a specific device all have the same token .svp any idea? here is the code i used : FirebaseUser mUser = FirebaseAuth.getInstance().getCurrentUser(); mUser.getIdToken(true) .addOnCompleteListener(new OnCompleteListener() { public void onComplete(@NonNull Task task) { if (task.isSuccessful()) { String idToken = task.getResult().getToken(); // Send token to your backend via HTTPS // ... } else { // Handle error -> task.getException(); } } });
@steve11329
@steve11329 3 жыл бұрын
Legend
@nhungbi2401
@nhungbi2401 4 ай бұрын
thanks!
@magmaticly
@magmaticly 3 жыл бұрын
Most tutorials blather on and on about unimportant things. This 21 minute video is like hours of regular tutorials. I love it!
@Fireship
@Fireship 6 жыл бұрын
UPDATE 2020 see the latest Firebase Basics video here kzfaq.info/get/bejne/p5t6aMugnL-5mHU.html Today we go back to the basics. In 20 minutes I cover pretty much everything you will get out of a full entry level Firebase course using vanilla JS. Also, I wanted to share my personal reasons for choosing Firebase.
@Tech_Enthusiast_001
@Tech_Enthusiast_001 6 жыл бұрын
Awesome overview and very well presented. I would love to see a full tutorial series like this actually. Keep it up!
@issamhammi9158
@issamhammi9158 6 жыл бұрын
I truly needed that one! Thank you and keep going!
@yuriscarbaci124
@yuriscarbaci124 6 жыл бұрын
this video was exactly what i was looking for, a "why should i use firebase, what it offers me and how easly i can use it" explanation. Great video and the contents you put in the video in 20 min really explain a great deal of real life problems developers has to solve in day-to-day development, meaning i will be back to check out this video from time to time. thanks a lot for sharing!
@sagarmali89
@sagarmali89 5 жыл бұрын
Hey i getting error firebase.auth.signInWithPopup is not function, plz help out
@vineetpandey8685
@vineetpandey8685 5 жыл бұрын
My program is not showing the displayName of the user which was shown at 6:40 in the video. Please tell me how to resolve this. I am getting this output on screen :Hello ${user.displayName} instead of Hello Vineet Pandey
@broosmax
@broosmax 4 жыл бұрын
Daaaamn, this is like a firestorm of information being injected into my brain. I had to play the video at 0.25 speed to be able to follow... Good luck, "beginners"!
@serhatkoroglu6708
@serhatkoroglu6708 3 жыл бұрын
just start to try it it's more convenient way to understand
@shahedtheboss
@shahedtheboss 3 жыл бұрын
I don't understand a single word after 4:00 😂😢
@generaldiscernment
@generaldiscernment 3 жыл бұрын
This was a fantastic overview, I'd say you need basic programming knowledge but it really walks you through in a clear way no matter your level of understanding. Great stuff.
@danielevans960
@danielevans960 6 жыл бұрын
Thought this was great at showing an existing programmer the power of using firebase versus their current preferred code. I would agree with the other commenter it was probably not an absolute beginner's guide, but this was very useful to me. Thank you for taking the time. Subscribed!
@steve-banbury-creative-xr
@steve-banbury-creative-xr 5 жыл бұрын
Not seen it in the comments, but it seems we have three deprecations in the latest SDK since this was published: 1) at around 16:24: .downloadURL is deprecated - I changed to .ref.getDownloadURL().then(... to get it working. 2) at 18:18: functions.config().firebase has been replaced with process.env.FIREBASE_CONFIG 3) at 18:50: we now need a snapshot in the param and reference that when referring to the document. i.e. .onCreate((snapshot, context) ... const docId = context.params.productId ... const name = snapshot.data().name ... Great video though - many thanks!!
@skymike4119
@skymike4119 5 жыл бұрын
16:24 replace with task.snapshot.ref.getDownloadURL().then(function(downloadURL) { console.log("File available at", downloadURL); const url = downloadURL; document.querySelector("#imgUpload").setAttribute("src", url); }); }
@Cyphlix
@Cyphlix 5 жыл бұрын
very helpful, thanks. For ts users; .onCreate((snap, context) => { const docId: number = context.params.productId; const value: any = snap.data(); const name: string = value.name;
@xnrivudxkskalflvk4075
@xnrivudxkskalflvk4075 4 жыл бұрын
doing god's work
@BlissAden
@BlissAden 2 жыл бұрын
16:24 for the downloadURL I changed the whole function to async await and just done this: const url = await task.snapshot.ref.getDownloadURL(); document.querySelector('#imgUpload').setAttribute('src', url); which is much simpler
@programminghumanway1858
@programminghumanway1858 4 жыл бұрын
You got my full attention throughout the video. Not a lot of content creators are skillful to engage users in 1 minute of video. Thanks for the awesome overview of the firebase. Just the right content I was looking for.
@Vaygeth
@Vaygeth 4 жыл бұрын
Lot of effort put into the vids, one of my fav dev channels. Keep up the good work
@mahghuuuls
@mahghuuuls 5 жыл бұрын
It helped, however many steps were skipped making it hard for a beginner to follow.
@profil4e
@profil4e 3 жыл бұрын
well it's a Beginner's Guide... when i started watching the video i also thought that it will cover actual api commands, but i guess an introduction to what it can do is also a Beginner's Guide ;D
@digitalday4972
@digitalday4972 2 жыл бұрын
Definitely not a beginners tutorial, hard to follow if you don't have any experience
@sebastiangudino9377
@sebastiangudino9377 2 жыл бұрын
Hard disagree. I'm watching this video BECAUSE having absolutely zero experience with firebase (Why else would I watch a Firebase beginners tutorial). And in only 21 minutes I gained all the knowledge needed to start a Firebase project with authentication and a database without a single line of backend code! The only thing I feel was left on the air is security. Is it really safe for us to do this kind of backend operations on the front end? Isn't our data vulnerable? But other than that, the practical information was all here. In a very short time without nonsense Edit: I do have backend experience of course, so maybe I'm not a 'beginner' but I don't think you should use something like firebase if you know nothing about the backend. And if you have used express with something like MongoDB Atlas you can follow all of this relatively easily
@buddyguy6816
@buddyguy6816 4 жыл бұрын
Some of you guys misunderstood the "beginner" thing. This is not a beginner video for JavaScript. It is a beginner video for Firebase. You can't expect to get the most complex features of JS like callbacks and promises in a 20 min vid. And about the "not up to date" part. Of course it will not be up to date because these technologies evolve with the speed of light. It was up to date when it was recorded. And if you see something not up to date, just do what Stephen Banbury did, instead of whining. Thanks for this awesome tutorial!
@Welcometomyjourney20
@Welcometomyjourney20 6 жыл бұрын
Really the most complete firebase/firestore tutorial on KZfaq. Thanks a million!
@sumantkanala
@sumantkanala 6 жыл бұрын
Very well explained about how firebase is not only quick and easy to setup but also production ready our of the box for many use cases. Great work. You are a gift that keeps giving to the web dev community! Keep it up.
@Fireship
@Fireship 6 жыл бұрын
+Sumant. Thank you , I am very happy to hear that :)
@adriantadros503
@adriantadros503 5 жыл бұрын
Fantastic video, thank you. A very nice quick overview of what Firebase is and what features it has. As a long time JS dev, I found the code examples were nice and simple and easy to follow to get a basic understanding of exactly how each feature works. This is a dream for JS devs who want to get a MEAN app built and deployed out in the wild. You get so much out of the box - Google CDN, SSL enabled out of the box, real time updates and not having to worry about web hosting, mongo hosting, etc. I'm inspired to build something now!
@LeCrowTV
@LeCrowTV 4 жыл бұрын
Adding the missing `` on line 14 between the transition at 11:16 was really sneaky
@yuvrajsingh-gm6zk
@yuvrajsingh-gm6zk 6 ай бұрын
jeff was like "No chit- chat just on the point", I loved to be here!
@ReviewLiveTv
@ReviewLiveTv 3 жыл бұрын
Its 's guide. It's fast but helpful. It took me an hour to catch up that he already made changes within maybe 5 frames. Thank you
@glmchn
@glmchn Жыл бұрын
0:22 "and you don't really need to have any coding experience to follow along with this video" ... 6:06 "this operation happens asynchronously which mean it returns a promise" oh yea a promise, yeaaaaaa sure, ofc
@facundoalvarado9
@facundoalvarado9 4 жыл бұрын
Man, this thing is so powerful. Can't understand why I waited so much to start using it. Will certainly give it a try!
@JamieMcI
@JamieMcI 6 жыл бұрын
I needed this big time when I was starting out with Firebase/Firestore. Excellent overview and serves as a solid refresher.
@Fireship
@Fireship 6 жыл бұрын
+Jamie Thank you. It's nice to mess around with the regular web SDK every once in a while.
@littlebeantheboss423
@littlebeantheboss423 2 жыл бұрын
Perfect video. Doing a hackathon at my company and needed a quick overview of firebase and this gave it to me quickly and perfectly
@juancholuna265
@juancholuna265 Жыл бұрын
I could not understand anything, but the video was engaging. I watched every second. 👍
@phembarl
@phembarl 4 жыл бұрын
Well, that escalated quickly...
@gillesbrouillette2497
@gillesbrouillette2497 3 жыл бұрын
🤣🤣🤣🤣
@fwef7445
@fwef7445 3 жыл бұрын
yep, garbage tutorial, not beginner friendly at all, must have got a lot of bots upvoting this
@lachlanmason3918
@lachlanmason3918 3 жыл бұрын
@@fwef7445 not begineer friendly. But for people like me who understand web basics and simple JavaScript, HTML and CSS this is incredibly helpful.
@sanjeevdandin9350
@sanjeevdandin9350 3 жыл бұрын
@@fwef7445 This tutorial is not garbage. Just it is not beginner friendly. For a guy like me who is working in JS for nearly 2 years this is on point. For me "talk is cheap, show me the code"
@chuxmyk
@chuxmyk 2 жыл бұрын
🤣🤣🤣
@samshanmukh
@samshanmukh 6 жыл бұрын
my mind is blown. that was an amazing tour of the firebase. And thanks a lot for the effort that you guys put in so the beginners like can learn a few things. again great tour of firebase and it's functions :)
@kavan1773
@kavan1773 5 жыл бұрын
This was a great beginners guide for someone like me who already has experience with AWS. I was able to get a great idea of what Firebase has to offer when compared to something like AWS. But for complete beginners it might be a bit too fast.
@sebastiangudino9377
@sebastiangudino9377 2 жыл бұрын
But that's the point, isn't it? You should be learning firebase if you have zero backend experience. Since this is a modern service to abstract said backend away. If you don't know WHAT you are abstracting away you are going to have a hard time regardless of the tutorial you watch
@janphillipjuntado5340
@janphillipjuntado5340 2 жыл бұрын
This is actually great content. Not beginner friendly of course but when you think about it, what kind of beginner would know about firebase anyway 🤔
@gatikgarg4007
@gatikgarg4007 4 жыл бұрын
I'm Now Realising that firebase can give life to so many project ideas that i dumped due to backend involvement its simply crazy
@davidakposibruke5444
@davidakposibruke5444 4 жыл бұрын
This really helped clear up so many questions I had about firebase. So great!
@parikshit804
@parikshit804 6 жыл бұрын
This is the first video that I watched for firebase; and I LOVE IT! great demo!
@Fireship
@Fireship 6 жыл бұрын
Nice! Firebase is seriously the best :) That's why I made this channel.
@inventsable
@inventsable 5 жыл бұрын
I think your pace is perfect. Not too fast, this is a runthrough for high concepts not a hand-holding walk.
@thecodetuber
@thecodetuber 5 жыл бұрын
Bro Are you sure We don't need any coding experience? B-)
@moonythm
@moonythm 5 жыл бұрын
U dont need any coding experience with firebase, ofc u need to know basic html, css, hot to run commands, have node an npm installed etc
@christianvanlierop8324
@christianvanlierop8324 5 жыл бұрын
For the first 5 minutes you don't... Then it's just straight up coding non stop
@ukaszsoszka1202
@ukaszsoszka1202 5 жыл бұрын
@@christianvanlierop8324 acutally to write down exactly as he does you don't need any experience
@yousufhossain9768
@yousufhossain9768 3 жыл бұрын
You need internetidate lvl JavaScript knowledge to implement .
@ko-Daegu
@ko-Daegu 3 жыл бұрын
@@ukaszsoszka1202 You wanna tell me to write down JS code you don’t need any coding experience Ok gotcha
@MeghanStark
@MeghanStark 6 жыл бұрын
Wow, thanks so much for doing a basic beginner's guide. I'm juuuuust knowledgeable enough to keep up. I'm migrating sites away from Business Catalyst and have to figure out new ways to build databases and secure zones after being able to do so with HTML, CSS, Liquid, and basic Javascript. It'll be a learning experience for sure!
@JuanMartinez-ye8ug
@JuanMartinez-ye8ug 4 жыл бұрын
Thank you! Firebase kept popping up and I was wondering what it was all about, so essentially is a "Back-end as a service". Pretty sick!
@tristangruener9571
@tristangruener9571 4 жыл бұрын
the quality of your videos are amazing and they're super helpful, thanks!!
@tanavposwal
@tanavposwal 2 жыл бұрын
Better than new firebase video
@id104335409
@id104335409 6 жыл бұрын
Not an Ultimate Beginner's Guide. Many of the things you think are common knowledge you just skip, because you understand them and you can't imagine how someone else (an ultimate beginner) cannot.
@chris-hayes
@chris-hayes 6 жыл бұрын
I believe it's supposed to be the Ultimate, Beginner's Guide. Not the Ultimate Beginner's, Guide. Ultimate as in it covers a lot of topics, not that it's super basic. You just have to find the channel that matches your learning style and speed. You can only choose two: Quick, Comprehensive, In-Depth
@Fireship
@Fireship 6 жыл бұрын
That is a fair point. It does assume a certain level of programming/dev background. Thanks for the feedback.
@id104335409
@id104335409 6 жыл бұрын
Fair points! I think it is just the interpretation of a grading system that was never really defined.
@charlesjojovandyck3275
@charlesjojovandyck3275 6 жыл бұрын
very true
@YousefSh
@YousefSh 6 жыл бұрын
I actually thought this was a good beginner's guide. I do know programming but not firebase.
@death-disco
@death-disco 4 жыл бұрын
You know what video I’d love to see you make? A series on how you make your videos. I’m in an unrelated field of computer science (blockchain) and would love to learn from you as your videos are slick. :)
@therealchrif
@therealchrif 6 жыл бұрын
Thanks for all your videos, you are the greatest.
@Fireship
@Fireship 6 жыл бұрын
Thank you :)
@1lucasvan1
@1lucasvan1 5 жыл бұрын
dude i know it says beginner, but wow you move quickly
@StarOnCheek
@StarOnCheek 3 жыл бұрын
you do realize that you can pause and rewind right?
@jordankayinamura2030
@jordankayinamura2030 2 жыл бұрын
Daaaang the name "Firebasics", like that. good tutorials man
@paulynuckhas1291
@paulynuckhas1291 6 жыл бұрын
OMG, you're game-changing. Thank you for this, I think this is my next step in development. I got so many ideas. Thank you :D :D :D :D
@rajayogan8884
@rajayogan8884 6 жыл бұрын
Finally.. you broke the 10-15 min limitation and shared a nice 20 minute vid.. Nice.. :)
@Fireship
@Fireship 6 жыл бұрын
Haha, it wasn't easy but I did it. I don't think I'll break the 10 min mark very often in the future.
@luka6354
@luka6354 4 жыл бұрын
Finally, Firebase with vanilla JS. Thanks!
@cananard
@cananard 4 жыл бұрын
Now I finally understand what's all the hype around Firebase... Awesome !
@justinwyatt8
@justinwyatt8 6 жыл бұрын
One of the best dev videos I've seen
@alexhum8662
@alexhum8662 2 жыл бұрын
1:34 Project Creation on firebase console 2:15 Creating project locally 4:45 Firebase Authentication 7:25 Firebase Database
@QuePeggs
@QuePeggs 5 жыл бұрын
For mac users at 2:17 use the command sudo npm install firebase-tools -g
@sameer33x3
@sameer33x3 3 жыл бұрын
the king we needed
@bhfaught
@bhfaught 4 жыл бұрын
you are making me really really want to learn firebase! I've been using google-app-engine for hosting, but firebase seems really tempting with all the possibilities.
@garrettgreen242
@garrettgreen242 4 жыл бұрын
This made things soooo much clearer, THANK YOU!!!
@dongyoungkim962
@dongyoungkim962 2 жыл бұрын
wow fireship, you are amazing, i am really tempted to get your life time course lol
@fabioambrozio7449
@fabioambrozio7449 4 жыл бұрын
Great explanation.. if you, after run "firebase init", get "Could not load ...", run "firebase login" before
@dennispilat
@dennispilat 6 жыл бұрын
I think you did a really good job! Keep up the great videos. Very helpful, as I’m trying to develop a SAAS.
@JackStepanyan
@JackStepanyan 6 жыл бұрын
Thank you very much for this video. Surprisingly today i had to create a simple app and im still very new to back end development. So i started to search some Rest databases or APIs and i found Firebase. I cant even explain how it was easy with just few clicks to create a real database. And now i found your awesome video. Please make more videos for beginners.
@Fireship
@Fireship 6 жыл бұрын
I remember feeling that way the first time also, and it's only getting better from here.
@dejo095
@dejo095 5 жыл бұрын
@16:00 when uploading a file. snapshot.downloadURL; is not working, it's deprecated, use: horseRef.put(file) .then(snapshot => { return snapshot.ref.getDownloadURL(); }) .then(downloadURL => { document.querySelector('#imgUpload').setAttribute('src', downloadURL); console.log('Done'); });
@orestkozolup3570
@orestkozolup3570 4 жыл бұрын
Thanks!!!
@musaddiqurrahman1949
@musaddiqurrahman1949 4 жыл бұрын
Woah! Amazing video! feels like there's no limit on what we can do!
@lipslide101
@lipslide101 6 жыл бұрын
I'm amazed by this. Holy shit. As someone used to working with java and sql in the backend, this is crazy.
@Fireship
@Fireship 6 жыл бұрын
Haha, that's exactly how I felt too
@lipslide101
@lipslide101 6 жыл бұрын
boi
@ThePandaGuitar
@ThePandaGuitar 4 жыл бұрын
Holy shit, why didn't this exist when I was busting my balls through late nights to build backends. Great tutorial that doesn't waste any time on fluff, thanks a lot man! Subbed because of this.
@AdeelKhan1
@AdeelKhan1 4 жыл бұрын
What were you using before Firebase? And what have you built using Firebase (so far)?
@botondbertalan4992
@botondbertalan4992 5 жыл бұрын
Thanks, you saved me a lo tof time. Although reading back the comments, I have 8 years of experience to follow along.
@khalifarmili1256
@khalifarmili1256 5 жыл бұрын
Thanks a lot. you have a nice efficient speaking rhythm. Every sentence that comes from your mouth is productive.
@suyashabobhate
@suyashabobhate 3 жыл бұрын
Sometimes I wonder how some people are so knowledgable that they can even explain what they are doing.
@paretocompanylimited9611
@paretocompanylimited9611 2 жыл бұрын
Firebase has been a great choice!
@bonsinPgwhizzing
@bonsinPgwhizzing 4 жыл бұрын
Holy cow ! this is for pro Only.. beginners don't try this at home , school or anywhere.
@timhysniu
@timhysniu 6 жыл бұрын
Great and easy to follow guide. Thanks!
@simonmoss2710
@simonmoss2710 5 жыл бұрын
For anyone struggling to get the function working and getting a message about productId being invalid - I split 'event' into '(snap,context)' (before the => operator) and used 'docId = context.params.productId' and 'name = snap.data().name'
@robertwhansen
@robertwhansen 5 жыл бұрын
.onCreate((snap, context) => { // Get an object representing the document // e.g. {'name': 'Marie', 'age': 66} const newValue = snap.data(); // access a particular field as you would any JS property const name = newValue.name; const docId = context.params.productId; const productRef = admin.firestore().collection('products').doc(docId); return productRef.update({message: `Nice ${name}!`}); })
@simplephotos6803
@simplephotos6803 2 жыл бұрын
@@robertwhansen Ur so awesome thank you! and you too @Simon Moss
@c2d330a8
@c2d330a8 5 жыл бұрын
Can we put this video on the firebase documentation main page? 😄 So good.
@liannvns
@liannvns 4 жыл бұрын
Excellent summary for me. Thank you so much for this content.
@aseemlalfakawma5084
@aseemlalfakawma5084 5 жыл бұрын
Good tutorial, really taught me a lot about firebase, I wish you could type your code out, without that weird copy paste thing, and also indent code properly.
@kevduc314
@kevduc314 4 жыл бұрын
Got the "Error: An unexpected error has occurred." at 2:30 when trying to init. Don't forget to login first with the command ~$ firebase login
@aaronestes3282
@aaronestes3282 4 жыл бұрын
Thank you!!!
@carter8679
@carter8679 4 жыл бұрын
yes thanks!
@alecmather
@alecmather 5 жыл бұрын
Bro PLEASE please please please slow down and explain, your viewers are begging you, you're covering extremely valuable topics, but I literally can't actually extract anything valuable from your videos because you don't actually explain anything in a comprehensible way.
@quangho8120
@quangho8120 4 жыл бұрын
I think it's the new normal now that no one understands anything anymore. I have seen countless tutorial videos online where they just do and don't explain anything at all, and they dominate over the really quality ones. So I mean, may be just abandon the channel and go look for other resources?
@alecmather
@alecmather 4 жыл бұрын
@@quangho8120 Yeah I agree, these types of channels dominate in their video/production quality, but suck at actually giving information
@luisaviles3986
@luisaviles3986 4 жыл бұрын
@@quangho8120 I disagree. There's always been crappy tutorials. The only downside to this tutorial is that it only explains how to build a web app but it doesn't go deep into explain the theory of everything he did. I enjoyed the video, he managed to cover alot of ground in just 20 minutes. It just didn't feel like a tutorial, felt more like a summary of a web app project.
@quangho8120
@quangho8120 4 жыл бұрын
@@luisaviles3986 yeah, because you seem have a preconceived notion of what firebase does. So the tutorial fits right to you. But to someone who has no prior knowledge, which in this case he advertise is the audience, it's just confusing and frustrating to follow along.
@luisaviles3986
@luisaviles3986 4 жыл бұрын
@@quangho8120 You're right. This video is not going to help a begginer master the concepts of computer science, but it does help someone like me learn what order to follow when building a web app. I've been learning CS from college and self-teaching, and sometime I feel lost trying to decide what parts of a project to do first. I think this video is pretty helpful, but the title gives off the wrong idea.
@moechetham
@moechetham 2 жыл бұрын
Excellent intro. Thank you
@ljka
@ljka 4 жыл бұрын
Oh wow. I keep on hearing about Firebase and this is the first video i watch about Firebase. This thing looks promising and powerful! Haha. My team has plans of migrating a legacy code, Spring MVC backend and JSP frontend, to new tech stack i think frontend is either ReactJS or Vuejs. I would like to propose this Firebase to my boss for study. 😁 Thank you!
@g2avityhitz
@g2avityhitz 2 жыл бұрын
it's 2022, i've been at least a hobbiest developer for years, and i'm somehow just now learning what Firebase is smdh
@IndignART
@IndignART 5 жыл бұрын
As a professional programmer, who unfortunately is not used to this kind of applications, i'm having an hard time following this tutorial, i cant imagine how it is for a person that doesnt have a programming background.This video is polished and well made but the content is hard to follow unless you are already an experienced dev. and in that case this tutorial may be just scratching the surface of something well known. I dont understand which audience this video is meant for. Too hard for a beginner, too easy for a pro.idk
@TryHardSneepur
@TryHardSneepur 5 жыл бұрын
Just in between ;)
@zoecarlibur
@zoecarlibur 5 жыл бұрын
Intermediate
@tarijaky4963
@tarijaky4963 4 жыл бұрын
Sangat menarik jadi tontonan bisnis.
@amin1mrx965
@amin1mrx965 Жыл бұрын
this video helped me a lot thank you. i got almost all the answers i wanted.
@im.thatoneguy
@im.thatoneguy 5 жыл бұрын
Filling in some gaps. npm and all of the command line tools that come with the npm command require node.js. Install that and then npm is the node.js package for Firebase. You'll also need to run Firebase login which he skips. Other than that everything so far is actually in the video. But those are a few concepts you wouldn't pick up instantly unless you were familiar with nodejs and Microsoft Visual Studio Code.
@im.thatoneguy
@im.thatoneguy 5 жыл бұрын
touch is not the name of a cmdlet, function, script file or operable program. I assume he's just creating a file so I did that in the file explorer.
@lucianosazo2646
@lucianosazo2646 5 жыл бұрын
Until yet, i don't saw the video, but i give you my like! thanks master!!!
@shashankpandey1966
@shashankpandey1966 3 жыл бұрын
Your channel is fully organized...
@maverick-mma
@maverick-mma 4 жыл бұрын
18:20 I had to use admin.initializeApp(functions.firebaseConfig());. Also thank you for short comprehensive overview!
@hyungtaecf
@hyungtaecf 4 жыл бұрын
Thank you so much!! Finally it worked! I don't know why you didn't receive any likes yet. The code the other guy put up there didn't work for me.
@CharlesLales
@CharlesLales 6 жыл бұрын
One more time, excellent. Concise and didactic, clear and efficient ;)
@user-qj9wv5ed9k
@user-qj9wv5ed9k 3 жыл бұрын
Excellent guide for developer like me
@elsonmendes610
@elsonmendes610 5 жыл бұрын
I'm very excited to learn this cool stuff!
@mattmarkus4868
@mattmarkus4868 Жыл бұрын
Is it meant for Angular or can you use react or vanilla js? I only ask because I see the angular logo everywhere. Thanks, this video looks professional and informative.
@HazemElsawy
@HazemElsawy 4 жыл бұрын
Your tuts cure my depression
@JulianSloman
@JulianSloman 3 жыл бұрын
Tour. Nice word for what this was!
@prabhkiratclassiv-c1513
@prabhkiratclassiv-c1513 3 жыл бұрын
I know half js and I am learning this video helped thanks 😊
@MacKoslowski
@MacKoslowski 6 жыл бұрын
This was disgustingly informative, thanks
@IoTLearner
@IoTLearner 5 жыл бұрын
I'm in love with firebase now...
@Monster33336
@Monster33336 5 жыл бұрын
Dude, you're going too fast. I admire this tutorial but slow down.
@vishalvaitheeswaranrk1475
@vishalvaitheeswaranrk1475 5 жыл бұрын
too fast
@valiok9880
@valiok9880 5 жыл бұрын
0.75x speed
@valmormn
@valmormn 5 жыл бұрын
chrome.google.com/webstore/detail/youtube-playback-speed-co/hdannnflhlmdablckfkjpleikpphncik
@MrPDTaylor
@MrPDTaylor 5 жыл бұрын
Pause button
@alonsojimenez7487
@alonsojimenez7487 5 жыл бұрын
Is not like you have only one chance to view the vid. Just rewind it.
@bensonmwaura9494
@bensonmwaura9494 6 жыл бұрын
Excellent insights yet again. Nicely done!
@BlueyMcPhluey
@BlueyMcPhluey 4 жыл бұрын
not a beginners guide, but still helpful to me
@carlosenrique2317
@carlosenrique2317 3 жыл бұрын
thanks, please add this video in the firebase main page :)
@vanhoangnguyen6358
@vanhoangnguyen6358 5 жыл бұрын
It's so helpful and advanced. Thank you a lot. It's make change my mind how to quick build nice and save cost product.
@pierrechavaroche7060
@pierrechavaroche7060 6 жыл бұрын
Very good job and thank you very much Jeff!
@Fireship
@Fireship 6 жыл бұрын
Thank you Pierre!
@alexanderhughes2813
@alexanderhughes2813 5 жыл бұрын
Best video on this by far, thanks for it!
@martynbirdem189
@martynbirdem189 3 жыл бұрын
kzfaq.info/get/bejne/bJdohZN9mLXWnnU.html Firebase project initialization. you can follow this channel.
@alanlal5625
@alanlal5625 6 жыл бұрын
Your videos are super good...keep up the good work 👌👌👌
@Fireship
@Fireship 6 жыл бұрын
+Alan Will do, thanks for watching!
@ilgamgabdullin
@ilgamgabdullin 6 жыл бұрын
Hello ! Excellent tutorial! What do you say if I translate your tutorials into Russian ? It would be great if Russian developers who don’t know English learn angular and firebase by your tutorials
@Fireship
@Fireship 6 жыл бұрын
A Russian translation would be great. Feel free to email me or message me on Slack if you want to talk details.
@zaki-fd2fd
@zaki-fd2fd 3 жыл бұрын
Beginners won't get shit out of this video.
@kld0093
@kld0093 5 жыл бұрын
Holy crap this is so cool!!!!!! I definitely want to learn more about firebase!
@ManishSingh-zd5go
@ManishSingh-zd5go Жыл бұрын
Really a great session. Thanks a lot
Firebase - Back to the Basics
25:23
Fireship
Рет қаралды 588 М.
What is Firebase and how to use it
41:01
Firebase
Рет қаралды 400 М.
Kids' Guide to Fire Safety: Essential Lessons #shorts
00:34
Fabiosa Animated
Рет қаралды 17 МЛН
SPILLED CHOCKY MILK PRANK ON BROTHER 😂 #shorts
00:12
Savage Vlogs
Рет қаралды 50 МЛН
Nurse's Mission: Bringing Joy to Young Lives #shorts
00:17
Fabiosa Stories
Рет қаралды 4,1 МЛН
Violet Beauregarde Doll🫐
00:58
PIRANKA
Рет қаралды 32 МЛН
I built 10 web apps... with 10 different languages
14:23
Fireship
Рет қаралды 1,6 МЛН
I forced EVERYONE to use Linux
22:59
NetworkChuck
Рет қаралды 470 М.
Getting started with Cloud Functions
19:26
Firebase
Рет қаралды 40 М.
God-Tier Developer Roadmap
16:42
Fireship
Рет қаралды 7 МЛН
How to OVER Engineer a Website // What is a Tech Stack?
11:20
Fireship
Рет қаралды 2,4 МЛН
100 Firebase Tips, Tricks, and Screw-ups
24:31
Fireship
Рет қаралды 187 М.
Best OS for programming? Mac vs Windows vs Linux debate settled
8:41
80% of programmers are NOT happy… why?
4:43
Fireship
Рет қаралды 1,2 МЛН
Firebase vs Supabase - I Built The Same App With Both
6:21
Your Average Tech Bro
Рет қаралды 108 М.
Kids' Guide to Fire Safety: Essential Lessons #shorts
00:34
Fabiosa Animated
Рет қаралды 17 МЛН