Earlier quoted context omitted.
I did this mistake with Parse. The open source version released doesn't have full features and we have run into a few bugs which created a lot of issues. It's better to stick with open source stack. I like what Amazon is doing with AWS with services like RDS and ElastiCache. If one carefully selects the services on AWS, there is almost zero vendor lock in. Google also had hiked the AppEngine price in Sept. 2011 which…
Check out my upcoming talk "Migrate to Firebase", today at 3. I specifically cover how to use new Firebase features to add all the missing Parse product lines back to ParseServer Link: https://events.google.com/io2016/schedule?sid=b4641ff7-0bef-...
Firebase expands to become a unified app platform
121–130 of 214 posts
Re: Firebase expands to become a unified app platform
#122(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…
Docs & specifications at http://docs.telepat.io/. Hope this helps you.
Re: Firebase expands to become a unified app platform
#123This may be a stupid question, but: What do you use it for? Cannot everyone basically edit the client code and do whatever with your data? I've only used Firebase for prototyping.
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.
> 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 quite well working implementations out there.
Re: Firebase expands to become a unified app platform
#124Earlier quoted context omitted.
Check out my upcoming talk "Migrate to Firebase", today at 3. I specifically cover how to use new Firebase features to add all the missing Parse product lines back to ParseServer Link: https://events.google.com/io2016/schedule?sid=b4641ff7-0bef-...
And when will Firebase become a product we can self-host? Because until that is the case – or unless people do an SLA regarding Firebase – it has to be considered as reliable as a 2$ VPS.
https://www.firebase.com/terms/service-level-agreement.html
Though I think what you are looking for is Firebase being covered by a Deprecation Policy.
Re: Firebase expands to become a unified app platform
#125Re: Firebase expands to become a unified app platform
#126(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…
Would love, love for Firebase to have a service similar to AWS Lambda to manipulate and transform data without having to maintain persistent servers.
Re: Firebase expands to become a unified app platform
#127Earlier quoted context omitted.
That's a feature I would also really like. I also use an intermediate server (ipify.org) to get the IP address. The only reason I need the IP address is to throttle users. If adjustable throttling was baked into the platform and not require me to write logic to handle it, that would be sweet too.
Is there anything you'd like to use the IP address for beyond throttling?
Re: Firebase expands to become a unified app platform
#128Earlier quoted context omitted.
Horizon[0] was announced yesterday; it's basically an open-source Firebase built on RethinkDB. [0]: https://github.com/rethinkdb/horizon
Horizon is only the "realtime db" portion of Firebase and it's only for Javascript, not Android or iOS. The mobile app realtime network connection tech is especially tricky to get right without draining a user's battery by doing things like constantly polling the backend. I have not seen anything from RethinkDB along those lines.
Re: Firebase expands to become a unified app platform
#129Earlier quoted context omitted.
Horizon[0] was announced yesterday; it's basically an open-source Firebase built on RethinkDB. [0]: https://github.com/rethinkdb/horizon
Horizon is only the "realtime db" portion of Firebase and it's only for Javascript, not Android or iOS. The mobile app realtime network connection tech is especially tricky to get right without draining a user's battery by doing things like constantly polling the backend. I have not seen anything from RethinkDB along those lines.
Re: Firebase expands to become a unified app platform
#130I have build apps with firebase in the past and the feature I missed the most was performing scheduled tasks on the database. Now we are getting this BIG app platform update and this feature is still not in there. AWS Lambda with Scheduled Events for a long time to come :sad-panda:
I'm also keen to use Firebase without having to run a separate server to handle logic for payments, email alerts on search terms, etc.