Introducing Firebase Hosting
21–30 of 79 posts
Re: Introducing Firebase Hosting
#22Why are connections always the selling point for these real time services? Are they actually the most expensive thing to scale or just the most required therefore most profitable? Edit: The surcharges for going over the limits seem a bit high. (Candle Plan: $0.25 each additional connection). Get some spike in traffic that causes 2000 visitors to your site for an hour and pay $500 lol
As for why we charge for connections in general, they do tend to be the most expensive thing to scale. They're also useful as a proxy of how "big" a site is (in terms of users). They're kind of the analog to "page views" in today's world of single-page-apps that update in real-time
Re: Introducing Firebase Hosting
#23Why are connections always the selling point for these real time services? Are they actually the most expensive thing to scale or just the most required therefore most profitable? Edit: The surcharges for going over the limits seem a bit high. (Candle Plan: $0.25 each additional connection). Get some spike in traffic that causes 2000 visitors to your site for an hour and pay $500 lol
From https://www.firebase.com/pricing.html:
> Because we use 95th percentile billing, you won't be charged for your overages 5% of the time (about 1.5 days each month).
Re: Introducing Firebase Hosting
#24We're building a single page app. Is it possible to use Firebase Hosting only for SSL and static assets and our own servers(exposing REST APIs) for dynamic content?
Re: Introducing Firebase Hosting
#25We're building a single page app. Is it possible to use Firebase Hosting only for SSL and static assets and our own servers(exposing REST APIs) for dynamic content?
You can make everything Firebase-related happen at the JavaScript level (which is why hosting is valuable to Firebase users in the first place).
Re: Introducing Firebase Hosting
#26Firebase is a revolutionary tool, and this is the last piece that was missing from the big picture. It's hard to imagine a Firebase-driven world today, but in 5 years developers will need to quickly deploy and iterate on real-time applications, for which a system like this is ideal. Lay out your database, set up login and security rules, and deploy your application, all through the same service. However, the lack of…
In general, I agree with your point though. That's why I'd recommend using 3rd-party monitoring / measurement, even if we did expose more benchmarks for you. It's important to understand your external dependencies and verify they meet the service level you require.
Re: Introducing Firebase Hosting
#27Earlier quoted context omitted.
Thanks for the feedback! Now that we've got the core deploy / rollback tooling in place, we're definitely looking for ways to plug into other common workflows (git, Dropbox, etc.). Stay tuned!
A git deployment would be great. Similar to heroku I guess.
Re: Introducing Firebase Hosting
#28Hi HN, I'm the lead developer on Firebase Hosting and the post’s author. We're trying to build something that's both simple to use and a serious production grade product. We think we're pretty close to the mark but we'd love to hear how we can improve it. Let us know in the comments (or email me at chris@firebase.com).
Can you provide any background on Firebase's thinking for where this, strategy-wise, fits into the platform? For example, is this supposed to be more of an add-on service for folks who already use Firebase or intended to woo new developers?
But when we do something, we like to do it "right" and so we also think Firebase Hosting comes with a very compelling feature set (Simple Deploy/Rollback, Automatically-provisioned SSL, and a global CDN). So we're optimistic it'll also attract new developers to the Firebase platform.
Re: Introducing Firebase Hosting
#29It seems like the AWS JS SDK is the youngest, least mature (there are surprisingly few results on Google), and perhaps most difficult to use, but it's sure nice that I can manage my existing AWS stuff with a client-side JS SDK, now. If you use AWS JS SDK with DynamoDB, isn't it as if you've built your own Firebase?