Тёмный

Firebase vs AWS Amplify 

Fireship
Подписаться 3,3 млн
Просмотров 264 тыс.
50% 1

Опубликовано:

 

1 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 281   
@RodrigoDiasS
@RodrigoDiasS 3 года назад
I think it's worth updating this video, given the latest updates on both platforms.
@Derekwwest
@Derekwwest Год назад
1000 percent
@amarjeetkhatua2187
@amarjeetkhatua2187 Год назад
When are we getting an update to this?
@NitishKumarSingh
@NitishKumarSingh 5 лет назад
I find Amplify complicated, it is kind of difficult to get started with it. AWS UI is shit but services are outstanding. Google makes things easier with the help of nice UI where Amazon doesn't focus more on UI.
@shailynortiz
@shailynortiz 4 года назад
Worry no more, aws now make a new console for amplify only
@migueldomingos4570
@migueldomingos4570 4 года назад
Amazon never gives a fuck about the ui even in their main site!
@franciscoandressierramunoz3095
@franciscoandressierramunoz3095 4 года назад
True
@maloxi1472
@maloxi1472 4 года назад
@@migueldomingos4570 They wanna get you emotionally invested in that shitty UI 😄 Soon, you'll realize that you're hooked to the cortisol and keep coming back for more 😂
@sumanth3036
@sumanth3036 3 года назад
TBH, I hate Google's UI in their consoles.
@dependersethi1345
@dependersethi1345 5 лет назад
✨You provide the best informative videos out there
@aihabgmati8425
@aihabgmati8425 5 лет назад
I agree with you, he has provided very good information in this video
@ben34256
@ben34256 5 лет назад
AWS requires card to set up though :(
@mightylinsomniak3464
@mightylinsomniak3464 5 лет назад
this comment should be pinned. Firebase will not ask ANYTHING even if you blow up your free quota. AWS charges you without notice
@Fireship
@Fireship 5 лет назад
Good call, forgot about that as I've had a paid AWS acct for a long time.
@ben34256
@ben34256 5 лет назад
Yeah, it's not a big deal as if you are seriously looking for a platform it's not a bad requirement. But for me and probably a lot of viewers of this channel who are hobbyists who just want to try it out, it's not a platform to make offhand concepts.
@DiegoRFGonz88
@DiegoRFGonz88 5 лет назад
You get all those solutions and you want for free really, bet if I ask you for some classes you'll charge me
@dusscode
@dusscode 4 года назад
Mighty L'Insomniak no lmao
@patrickmullot73
@patrickmullot73 5 лет назад
It's great that we have more alternative now on RT databases That will put pressure on the firebase team to release more awesome stuff for their platform if they want to stay at the top!! Thanks, Jeff to bring the info to us in such an exhaustive way and not just reading the specs
@Fireship
@Fireship 5 лет назад
Healthy competition makes these products better for us. I think we can count of Firebase to keep pushing the limits.
@-_-unseen-_-
@-_-unseen-_- 5 лет назад
Firebase is definitely more friendly to developers but it's the limitations in Firestore queries compared to DynamoDB that kills it.
@Euquila
@Euquila 4 года назад
it's optimized for reads..
@lucascolepichette5970
@lucascolepichette5970 2 года назад
@@Euquila Optimization shouldn't result in limitations, just imo
@ProgramWithErik
@ProgramWithErik 5 лет назад
Very interesting! I've been working a lot in AWS lately, but I like Firebase, it was neat seeing a comparison of the too. Another thought on the to-do demo is instead of using the GraphQL API, you could use the REST API and setup a todos end point. At that point you would have to write a lambda for the end point, to GET and POST the data to the dynamoDB (that's the easy part). The tricky part would be the real time aspect. My first thoughts is to use web sockets and have the svelte client connect to another API end point to do that. The nice thing about DynamoDB is you could have the DynamoDB stream connect directly to a lambda. So every update to the DB will trigger the lambda that can emit a broadcast to all the connected clients. Would that be simpler then GraphQL? I dunno, but it's another way to do it if you don't like the complexity of GraphQL and subscriptions. If you don't have the requirement of real time then it's way easy.
@Fireship
@Fireship 5 лет назад
That is an interesting thought. A websockets implementation could def get the job done, but the Apollo client is nice because it can also handle optimistic updates and caching easily.
@PL4YR
@PL4YR 5 лет назад
Top in this. Ive done sockets in serverless using dynamos downstream service. This replicates the effect. But each open stream costs more on the socket gateway. It can accrue over time very quickly. For the realtime data update apollo is far more superior.
@PL4YR
@PL4YR 5 лет назад
You also have to manage user channels potentially too. It becomes logistical nightmare
@sots_music
@sots_music 4 года назад
What I ended up doing in one of my projects is use the best of both worlds. Firebase is really good for interacting with the user interface so created read model that uses firestore and users can only ever perform reads from the Firebase backend. Then in AWS I implemented lambda functions for the API that is secured by cognito authentication. The main reason as to why I picked AWS was due to fact that I was suppose to implement a data pipeline whereby multiple lambda functions will communicate with one another via message queues (SQS) and update data in DyanmoDB. Since AWS has a good feature called DynamoDB streams I was able to attach lambda functions that listen to record updates in the database and update the read model which is essentially updating firebases firestore. With this done I was able to use realtime functionality of firebase but with a data processing backend in AWS. This basically was inspired by the CQRS pattern martinfowler.com/bliki/CQRS.html. No Appolo was used in this by the way. Other thing you will need to consider is using authentication user token in firebase in order order to integrate cognito and firebase auth users
@nimayndolo
@nimayndolo 3 года назад
God I wish Firebase allowed for a relational db 😞
@Alexldev
@Alexldev 2 года назад
Would be cool to see you update this seeing both services have changed quite a bit As always a great video :)
@26waga
@26waga 5 лет назад
Love the simplicity of auth in AWS. Love also the Graphql schema api generation. However I prefer Firebase.
@Fireship
@Fireship 5 лет назад
Yeah, I'd really like MFA and more customization for Firebase auth.
@scootndute579
@scootndute579 3 года назад
Amplify pros: - super easy user authentication out of the box - good documentation for all platforms (web, vue, react, ios, etc) Amplify cons: - DynamoDB was built for massive quantities of data so the relational model is proprietary and confusing - You can't get away with only using "Amplify".. you'll have to use other AWS services I dropped Amplify on my latest project and am so much happier back with Firebase. What Firebase does better than Amplify is its ability to totally abstract itself from the mothership (aka Google Cloud, and AWS for Amplify). You can go start to finish without leaving Firebase on your project. If you use Amplify, chances are you're going to need to branch into the overwhelming AWS-land.
@CodeCowboy64
@CodeCowboy64 4 года назад
One thing not covered, that I would really like to see covered is cold-start differences. My understanding is that cold starts take a lot longer on Firebase than Lambdas/Amplify functions
@abpdev
@abpdev Год назад
Please elaborate on this.
@CarlosJuarez-dl3nn
@CarlosJuarez-dl3nn 5 лет назад
Do more AWS content! :D Pretty please?
@DreaMinder1
@DreaMinder1 5 лет назад
Upvote for Firebase Leave '+' comment for Amplify
@VallabhRao123
@VallabhRao123 5 лет назад
+
@gcyalbert
@gcyalbert 4 года назад
Amplify is more difficult to start with but once you get used to it, you will love the flexibility.
@leonelmateus
@leonelmateus 5 лет назад
I appreciate your coverage on this subject!
@earljohn3ric
@earljohn3ric 5 лет назад
great video, very informative :) Honestly, i thought you're going to be biased about this, but i'm wrong, very professional :)
@dk0r51
@dk0r51 5 лет назад
13:29 "Now I probably wouldn't build an app like this in the real world..." ...because? 🤔
@anonwithamnesia
@anonwithamnesia 4 года назад
Anthony because it gets very complicated
@PL4YR
@PL4YR 5 лет назад
Top video. I have some heavy experience with amplify. I am not a fan of the cli. The SDK is brilliant. But the cli bootstraps infrastructure and code together. Like for example. Setting up auth the quick way in the cli enforces sms codes? To get rid of that you have to destroy it and rebuild. Theres also a massive risk in editing their generated infrastructure (cloudformation). In terms of appsync to dynamo. I have just removed appsync all together. I just use aws document client to connect to dynamo with the auth credentials from amplify/cognito. To tldr it. We use amplifies sdk. Dynamo and lambda. The analytics are great too and quick to implement. Its interesting on push notifications to. I actually have firebase launching them instead of aws. But i store the push notification acceptance code in dynamo. I would rate the sdk much better than the cli. The cli i would say provides more minimum flexibility. It gets the resources up there. But all those manual changes after? Not stored anywhere so your disaster recover becomes a bit more tedious Catch me on slack if you want more info ;)
@lardosian
@lardosian 4 года назад
Hey, I'm building a PWA with Amplify and Appsync, I'm fairly new to all this stuff, some tips would be great. I was directed to an example survey pwa on AWS so I cloned the repo and followed all the steps and got it set up. So I'm wondering now should I strip it down and build up my own app using it as a base or start from scratch with a new amplify project, thank you!
@ruben45210
@ruben45210 5 лет назад
Finally compettition, google will have to improve firebase to not lose for amazon.
@yaboirairai
@yaboirairai 5 лет назад
Currently weighing these two options up against each other. How do you read my mind with your video topics!??????
@Fireship
@Fireship 5 лет назад
Community feedback & suggestions are what drive the content on this channel :)
@yaboirairai
@yaboirairai 5 лет назад
Fireship the coincidence this time was honestly uncanny though. You are on the ball. Keep it up! Personal request: a deep dive into some tips/tricks to improve performance and reduce costs on Firebase or Amplify. I know you’ve touched these topics before but would be awesome to see you revisit this topic as many of your viewers are building apps on these services on a tight budget
@jmmyers8214
@jmmyers8214 5 лет назад
I love using firebase but it's not available in China. Google servers are banned in China, and I make apps for the China userbase :/
@akashhadagali4220
@akashhadagali4220 5 лет назад
Amplify is only free for 12 months ...... but firebase forever !!!!
@omar_benaidy
@omar_benaidy 5 лет назад
i likedd the video as soon as i saw svelte 3
@eddiejaoude
@eddiejaoude 5 лет назад
Great comparison 👍. I used to use aws but have recently switched to Firebase and everything is much simpler 🤓
@ighsight
@ighsight 3 года назад
I love AWS, but Amplify & Cognito are not your best choice if you are looking to avoid the complexities of setting up user authorization. Which seems to be the point of using solutions like Amplify or Firebase in the first place. I lost hours and hours of developer time trying to get it to work. The difference in speed & complexity for setup are confirmed by this video, Firebase seems so much easier to get going compared to the Amplify/GraphQL steps showed during comparison near end of video.
@ComisarioLobo
@ComisarioLobo 3 года назад
Hey, it would be great if you could create an up to date video, also showing other capabilities of each platform :)
@vinayakgosale8470
@vinayakgosale8470 3 года назад
Request a video on AWS Amplify, specifically the Data store GraphQL API and Security rules. I've tried Firebase, it's definitely more developer-friendly than AWS Amplify. But for complex fin-saas applications, AWS Amplify takes the cake thanks to its relational data modelling and flexibility.
@braydenwilson4484
@braydenwilson4484 3 года назад
Is it smart to build on Amplify and then migrate to custom Auth Modules(Instead of Cognito or App Sync) and Custom Dynamo DB interaction? That way we can mitigate the disadvantage of AWS Amplify and stay for long after scale!
@ani2595
@ani2595 3 года назад
Just out of curiosity, what is Microsoft's version of Firebase/Amplify? Do they have a platform on Azure for this?
@elie2222
@elie2222 5 лет назад
How easy is local development? If you have a bad internet connection or are on a plane without internet is it possible to develop?
@blessingschishimbakalambai8574
You read your messages!!! thanks!
@Fireship
@Fireship 5 лет назад
Yes, I do. That's the main way I figure out what to create.
@BlueDragon022
@BlueDragon022 5 лет назад
Overall, how limiting do you think Firestore is compared to GraphQL/dynamo db. Do you think the limitations of Firestore do not affect the majority of apps and only a few percentage of applications will need the flexibility found in GraphQL? Thanks
@Fireship
@Fireship 5 лет назад
Firestore is actually more flexible then DynamoDB for data modeling imo, but GraphQL can use ANY data source. If you hit the limitations of NoSQL, you can drop in a graph database or full-text search engine and still use the same realtime SDK.
@BlueDragon022
@BlueDragon022 5 лет назад
@@Fireship Ah I see thank you!
@DK-ox7ze
@DK-ox7ze 3 года назад
What if we have some big custom logic/algorithm that needs to be run on the backend? How will we do that in Firebase or AWS Amplify?
@JakeWoken
@JakeWoken 5 лет назад
Hugeee props for using Svelte! And awesome video overall. Thanks a lot!
@mayankkataria7080
@mayankkataria7080 3 года назад
I have 2 questions: 1. How you plan your content? 2. How you remember multiple platforms code?
@Proyecto26
@Proyecto26 5 лет назад
If you need to use Firebase or AWS from Unity check our plugin => github.com/proyecto26/RestClient
@gcavicchioli93
@gcavicchioli93 5 лет назад
Really nice video. Congrats 👏🏼👏🏼
@nicklesseos
@nicklesseos 2 года назад
Can you make a newer video on this?
@vincentdufour613
@vincentdufour613 4 года назад
You have to add the API-gateway (bridge between the client http call, websocket...) cost if you create a serverless API with AWS. So the cost per function is much more : 0.2 per million for lambda call + other lambda function cost + 1.2$ per million call (slightly more or less depending on the AWS region).
@emericgnonhoue7029
@emericgnonhoue7029 5 лет назад
Firebase is way easier to use in my opinion.
@nickstylezmedia
@nickstylezmedia 5 лет назад
Yea, look at all the boilerplate code you have to write and use when using Amplify. Also Firebase is cheaper when it comes to the actual data reads/writes.
@Fireship
@Fireship 5 лет назад
I agree for the most part. The Firebase console is very intuitive.
@tylergabb2632
@tylergabb2632 4 года назад
Firebase lets you attach a snapshot to a filtered collection, for example .firestore() .collection("collection") .where("user", "==", user.email) .onSnapshot(...) What would the equivalent be on amplify? As far as I can tell, your graphql subscription listens for all todo's, what if you wanted to only listen to those owned by a specific user?
@Liquidian
@Liquidian 3 года назад
You would specify which todos you want in the query, then subscribe to that.
@shafu_xyz
@shafu_xyz Год назад
Can we use Firebase/AWS amplify exclusive on server? without shipping any of these to browsers for say a web project? Does this has any limitaions?
@KarimMaassen
@KarimMaassen 5 лет назад
Firebase anytime.
@GrumpyPapaJim
@GrumpyPapaJim 5 лет назад
oh fs. I use firebase with vuex and have buttons to refresh the store. Didn't know I could create a livelink :( Would love a video on what firebase classes as reads while setup as a live link.
@TelosMediaOrgOfficial
@TelosMediaOrgOfficial 5 лет назад
I believe Amplify also provides a way to listen for the user's auth status.
@death-disco
@death-disco 4 года назад
as someone how has run a consultancy for a decade making dozens of production apps, honestly, this stuff is great for toys and learning but anyone using this in production should be shot. you should never hitch the success of your company to something so fragile. We have seen other services like this die out and giving google or amazon complete control over the inner working of your apps, data, and privacy is a recipe for absolute disaster.
@lardosian
@lardosian 4 года назад
This has crossed my mind recently as a new developer. But many software houses use their solutions in production, particularly AWS, of course you know a lot more than me but are you being slightly over the top?!
@fatal510
@fatal510 2 года назад
Wtf? 98% of the web runs on AWS, or Google backed services. There is no risk there like you are describing.
@imrannazir6931
@imrannazir6931 Год назад
AWS now have Lambda URLs. So they have the 'callable functions' base covered.
@dakadoodle6295
@dakadoodle6295 3 года назад
Aws learning curve is not that bad. You can do it
@hdorodev
@hdorodev 5 лет назад
Thanks so much for the video, Jeff 💜
@atxorsatti
@atxorsatti 5 лет назад
Not sure what firebase is .. isn't that like just a db sitting in Google cloud?
@anton-shubin-live
@anton-shubin-live 5 лет назад
It's a bunch of Google Cloud services linked together in a very nice way. So you could write your app fully serverless. List of services for development is: Functions (backend), Real-time Database, Hosting, File Storage, Authentication and more. Updates in DB triggers Functions and update your UI automatically, Upload of file to File Storage triggers other Functions, etc.
@spontaneousjr.8351
@spontaneousjr.8351 3 года назад
bro this is coming what to do? Failed to compile ./src/index.js Module not found: Can't resolve './App' in '/Users/saatyakthegreat/Downloads/react-firebase-chat-master 5/src'
@teC5
@teC5 Год назад
its time for a refresh on this video! I bet amplify matured, and firebase has new features as well.
@yogenp
@yogenp 5 лет назад
Love the movie snippets. Haha. Awesome research. I had dabbled with both and favored Firebase more of the time because its easier to set up.
@Fireship
@Fireship 5 лет назад
Awesome, thanks for the feedback 👍
@yannmassard3970
@yannmassard3970 4 года назад
AWS yeah jump on it if u like missing documentation. I remember posting how to upload / dl an image (took me hours to figure out) to AWS bucket storage on ios SWIFT 3(I think) in 2016 on SO that made tens of K views / ups. Because their doc was simply not working .... and BTW, FS and cloud FS are so well conected that it REALLY makes serverless apps candy dev.
@randymotluck1503
@randymotluck1503 Год назад
Man I love your videos. I especially like all the movie cuts for humor. I watched most of them on first release. It makes watching programming stuff (which is dry by nature - no pun).. much much better. You've been to the rodeo and I appreciate your content and your rationale based on experience. Thank you!
@ankushjain358
@ankushjain358 Год назад
I use Amplify the reverse way. I first create the backend resources in AWS, then configure the Amplify SDK in the app to use the existing backend. This way I feel more confident.
@RageBasterd
@RageBasterd 5 лет назад
havent used amplify yet, but competition is always welcomed. whats the 3rd best option?
@Fireship
@Fireship 5 лет назад
I would probably say MongoDB Stitch www.mongodb.com/cloud/stitch
@zugdsbtngizudsgbnudsdsoiu
@zugdsbtngizudsgbnudsdsoiu 4 года назад
ive just tried to set up amplify and noticed that amazon docs are big bs. Before even explaining how to do basic stuff (Like correctly setting up your project) in JS you already get React examples. For the config they have this "super fancy" CLI which implies it helps you configure shit but it doesnt.
@ahmadmraish5834
@ahmadmraish5834 Год назад
You really need to update this video... its very misinformative for new commers...
@slmille4
@slmille4 2 года назад
When calculating the cost of Amplify vs Firebase, be sure to include how much productivity time is lost waiting for Amplify to f@cking compile.
@raveeshdotme
@raveeshdotme 5 лет назад
Next step? Write an AWS Amplify plugin for Flutter?
@Fireship
@Fireship 5 лет назад
There is an open issue with 100+ upvotes, so I imagine they will support it soon.
@olpee
@olpee 3 года назад
AWS Amplify now supports Flutter
@suyesh
@suyesh 5 лет назад
Firebase is better, but i came here for ASMR
@architectsofthecloud6218
@architectsofthecloud6218 Год назад
That's super extensive research and comparison. Wow just wow!
@alexjflopes
@alexjflopes 4 года назад
Does GraphQL require a "rigid" schema, that is, If I want to retrieve documents with some variations in the attributes in the same collection, can I read/write them with GraphQL, even when they don't match completely the schema in graphQL file?
@GyanFhaD
@GyanFhaD Год назад
Both Firebase and AWS Amplify provide fully managed backend infrastructure. But who is the cheaper of the two.
@benmarcus2577
@benmarcus2577 3 года назад
Hi can someone explain.. do we not need graphql with firestore? is there a use case to use graphql with firebase/firestore? or only with AWS amplify? thank you so much!!
@ninjaapi4737
@ninjaapi4737 3 года назад
aws amplify is horrible, i had a very difficult time getting started with it.
@amit.deshmukh
@amit.deshmukh 2 года назад
Can you please update in 2022,considering this services are upgraded a lot
@bongisiphomntambo9026
@bongisiphomntambo9026 3 года назад
Did you have to get a copyright license to use footage and snapshots from movies like "the terminator" If so, how did you? I need this info for a project that I am doing.
@MikeNugget
@MikeNugget 5 лет назад
U forgot one meme: "Not bad, not bad, now you.." xD
@anonwithamnesia
@anonwithamnesia 5 лет назад
Haha this would be good
@Fireship
@Fireship 5 лет назад
Not a bad idea for a future video
@grow-nannyinc1444
@grow-nannyinc1444 4 года назад
Great video! I build IoT solutions hosted on S3 with a serverless backend. Although accessing data may be more expensive in terms of adding big data it feels like the ease of use with Kinesis Analytics was the selling point for me. I feel like I needed to learn GraphQL anyway.. My vote goes to Amplify.
@bboyNan
@bboyNan 2 года назад
You should also mention Firebase is not accessible in China mainland, I cannot imagine any product owner will think this is a hard to decision when one cannot reach to the biggest market in the world.
@amanda2348-g9j
@amanda2348-g9j 2 года назад
if my app on App Store uses firebase service, will users in china not be able to access it?
@bboyNan
@bboyNan 2 года назад
@@amanda2348-g9j that’s right, unless Chinese user use vpn/proxy to bypass the firewall
@amanda2348-g9j
@amanda2348-g9j 2 года назад
@@bboyNan thank you so much, that's really serious problem.
@kardashevr
@kardashevr 5 лет назад
the only good thing about all this is competition.
@hosein88
@hosein88 4 года назад
you definately need firebase for the analytics, crashlytics, and ads, amplify analytics is trash. however i personally use both firebase and amplify on the same app.
@muhammadtalha5665
@muhammadtalha5665 4 года назад
But You Can use as many google developer Accounts as you want using your free quota...NO CARD Needed
@stfalx
@stfalx 3 года назад
Did you get hired by Firebase or something? ... joke ... :)
@mariol8831
@mariol8831 Год назад
Please we need an updated video with this comparison, thanks.
@a.s.hgaminggeek7576
@a.s.hgaminggeek7576 4 месяца назад
While alot has changed ijust prefer as firebase is simplicity
@Gorlokki
@Gorlokki Год назад
For some weird reason, I can't stand other tech videos, but I love watching yours. Great work!
@abpdev
@abpdev Год назад
Just finished a firebase project, did well. Now off to build one with amplify.
@scottpuckett5403
@scottpuckett5403 3 года назад
Can you do an update on this? Trying to decide on Firestore or amplify with graphql.
@MapMavericks
@MapMavericks 2 года назад
Great comparison. Are you considering making a course on amplify? I'd love to see that. I personally use firebase, but we're implementing Amplify in our project at work.
@ct5816
@ct5816 5 лет назад
Is there any equivalent to these from Azure?
@ArthurSilva-kt2bx
@ArthurSilva-kt2bx 4 года назад
great video! despite people from comments are arguing AWS is hard to use, I think AWS amplify cool. Docs are really well explained, and I agree that UI is not that friendly. do you recommend me any getting started video or course of firebase ? I'm struggling a lot with their docs. cheers mate!
@sayilu
@sayilu 3 года назад
it seems like Firebase can have multiple tables instead of what you mentioned "single table."
@konopaku913
@konopaku913 4 года назад
Thank you for the nice video! In terms of pricing, Firebase is $0.6 read/ $1.8 write per one million query ? It seems that pricing of Firebase is based on 100,000.
@socks5proxy
@socks5proxy 5 лет назад
Would you be interested in comparing Firebase to GunDB?
@kitrodriguez992
@kitrodriguez992 4 года назад
My one question would be does Spark Plan Free tier expire? Cause im currently trying to finish an app. I have already been using Firebases server to host it.. Not really going over the limit as I'm the only one who has the app.. With all that being said, will i have to pay for anything at the end of the month or so? lol Im so confused.
@kitrodriguez992
@kitrodriguez992 4 года назад
College student by the way. Forgive me if the question is stupid. Lmfao
@omar_benaidy
@omar_benaidy 5 лет назад
is svelte native / native script available in any of the platforms ?
@basdfgwe
@basdfgwe 5 лет назад
Didn't know anyone uses nativescript.
@madanshukla6035
@madanshukla6035 2 года назад
I want to know about what is firebase can anyone recommend me fireship video
@vulcs
@vulcs 2 года назад
Now implement huge enterprise app and compare this to .net with entity framework
@t.j.prescott1960
@t.j.prescott1960 4 года назад
Can you please make a video comparing Amplify to Laravel Vapor both using AWS? Great comparison. Thankyou!
@pragyavashishtha2409
@pragyavashishtha2409 2 года назад
Thanks a ton! Very helpful for my upcoming project. I love the dev community on the internet
@ricko13
@ricko13 3 года назад
Why can't Amazon build a nice UI for God's sake!
@mattiaesposito5525
@mattiaesposito5525 5 лет назад
arnold schwarzenegger in the video rocks
@SergioArroyoSailing
@SergioArroyoSailing 4 года назад
super awesome video! which is better for REACT Native ? could you do a follow-up video on that? :D
@trackbuddy2013
@trackbuddy2013 5 лет назад
Thanks for the video, fire-base best to use for flutter apps, and conducting A/B testing. Please do a video on aggregated document on firestore when developing with flutter. If you already have such video please share link.
@user-qr4jf4tv2x
@user-qr4jf4tv2x Год назад
i feel like skiping firebase i like my flexibility
Далее
I tried 5 Firebase alternatives
10:31
Просмотров 795 тыс.
The Ultimate Amplify vs Firebase Comparison for 2024
16:04
#慧慧很努力#家庭搞笑#生活#亲子#记录
00:11
100 Firebase Tips, Tricks, and Screw-ups
24:31
Просмотров 188 тыс.
My Bleeding Edge Tech Stack for 2025
8:43
Просмотров 944 тыс.
What is AWS Amplify? Pros and Cons?
8:04
Просмотров 93 тыс.
Is Supabase Legit? Firebase Alternative Breakdown
8:16
Fullstack Development with AWS Amplify Gen 2
1:07:32
Просмотров 3,2 тыс.
Firebase - Back to the Basics
25:23
Просмотров 591 тыс.
What is AWS Amplify
12:51
Просмотров 81 тыс.
The JavaScript Survival Guide
14:47
Просмотров 728 тыс.