Earlier quoted context omitted.
Is there an Open Source version of Firebase which we can use on our own hardware if we wish to? Vendor lock-in is the biggest fear I have with Firebase. Like Facebook (Parse), if Google also decides that Firebase is not profitable and decides to close down, how do we run our applications without rewriting? How do we protect ourselves, if Google decides to increase the price of Firebase 3-4 times in a single day? Even…
Horizon[0] was announced yesterday; it's basically an open-source Firebase built on RethinkDB. [0]: https://github.com/rethinkdb/horizon
Firebase expands to become a unified app platform
191–200 of 214 posts
Re: Firebase expands to become a unified app platform
#192Earlier quoted context omitted.
I use it for its main selling point: a realtime backend. With Firebase, Vue-Fire (Firebase bindings for Vue.js), crossfilter and chart.js, you can whip up a functional and sweet analytics dashboard or [insert pet project here] in a weekend. It gets the headache of a backend (and user auth) out of the way. As for security - the Firebase security rules and server side authentication allow you to lock things down.
> With Firebase, Vue-Fire (Firebase bindings for Vue.js), crossfilter and chart.js, you can whip up a functional and sweet analytics dashboard or [insert pet project here] in a weekend. > It gets the headache of a backend (and user auth) out of the way. You can get the same if you use other tools. The realtime stuff is the only big thing they do most other projects don’t, and even for that there are currently several…
A lot of eggs in one basket admittedly, but that basket looks pretty robust for now.
Re: Firebase expands to become a unified app platform
#193Earlier quoted context omitted.
This is good news for me. File storage and push messaging are particularly nice. As a user of the Firebase iOS SDK, I was wondering why the SDK was getting so stale. The Quickstart guide used deprecated Swift, didn't offer Carthage support, etc. I looked at the new docs, and I guess they ditched the old Quickstart format in favor of a bunch of examples. At least the code seems to be up to date, which is somewhat enco…
Firebase iOS engineer here: First off, I'm glad you like the new feature additions. We'd love to hear your feedback on Storage and FCM :) Secondly, I'd love Carthage support as well, but there are a few things (built into Carthage) that prevent us from adding this: 1. Carthage requires iOS 8+ (dynamic frameworks only). Firebase supports 7+, and we build static "frameworks", so we'd lose that (which is still relevant…
Anyway, I continue to use (and enjoy using) Firebase for iOS and web.
Re: Firebase expands to become a unified app platform
#194I don't really need the actual realtime communication stuff all that much (though it might turn out to be useful), but just a lightweight place to store json is really useful.
Re: Firebase expands to become a unified app platform
#195Earlier quoted context omitted.
Would love, love for Firebase to have a service similar to AWS Lambda to manipulate and transform data without having to maintain persistent servers.
You can use any Google Cloud product with Firebase so you have access to Cloud Functions. https://cloud.google.com/functions/
Re: Firebase expands to become a unified app platform
#196For Firebase/Google Cloud Platform engineer: does it mean Google Cloud Endpoints is being phased out? if i'm already using Google Cloud Endpoints, should i move to Firebase? what's the advantage?
Endpoints is going strong and will have a release later this year that adds support for hosting APIs on more of our compute offerings (Compute Engine, Container Engine, App Engine Flexible Environments). We'll also be adding features, reporting, etc.
Re: Firebase expands to become a unified app platform
#197(firebase founder here) I’m thrilled to finally be able to show everyone what we’ve been working on over the last 18 months! When I said “big things are coming” in the HN comments back when our acquisition was announced, I was talking about today : ) We’re really excited about these new products. There are some big advances on the development side, with a new storage solution, integrated push messaging, remote config…
Firebase is awesome! Realtime has become a great selling point with my clients (and a necessity for things like chat apps). However, after doing over 20 apps with Firebase I've had to combine with other PAAS due to some features missing/lacking: server-side code (event-driven like Parse had or like AWS Lambda) and better/easier search features. In the second case for instance, let's imagine a support app, it makes mo…
Re: Firebase expands to become a unified app platform
#198Earlier quoted context omitted.
You can use any Google Cloud product with Firebase so you have access to Cloud Functions. https://cloud.google.com/functions/
I've been eyeing this. Can we kick off a Cloud Function via Firebase Cloud Messaging?
Re: Firebase expands to become a unified app platform
#199(firebase founder here) I’m thrilled to finally be able to show everyone what we’ve been working on over the last 18 months! When I said “big things are coming” in the HN comments back when our acquisition was announced, I was talking about today : ) We’re really excited about these new products. There are some big advances on the development side, with a new storage solution, integrated push messaging, remote config…
Re: Firebase expands to become a unified app platform
#200(firebase founder here) I’m thrilled to finally be able to show everyone what we’ve been working on over the last 18 months! When I said “big things are coming” in the HN comments back when our acquisition was announced, I was talking about today : ) We’re really excited about these new products. There are some big advances on the development side, with a new storage solution, integrated push messaging, remote config…
Is there an Open Source version of Firebase which we can use on our own hardware if we wish to? Vendor lock-in is the biggest fear I have with Firebase. Like Facebook (Parse), if Google also decides that Firebase is not profitable and decides to close down, how do we run our applications without rewriting? How do we protect ourselves, if Google decides to increase the price of Firebase 3-4 times in a single day? Even…
You can architect your app sequester these 3rd party services on the edge, making any rewrite much easier.