Show HN: Firebase, a scalable real-time backend
firebase.com
Show HN: Firebase, a scalable real-time backend
1–10 of 148 posts
Re: Show HN: Firebase, a scalable real-time backend
#2Re: Show HN: Firebase, a scalable real-time backend
#3Seems there is a huge development ongoing to reflect new development and scaling practices...
EDIT: REALLY like the RT-Chat on the site - that is showcasing as it should be (and not just another "Demo" button).
Re: Show HN: Firebase, a scalable real-time backend
#4TheReelBox uses Firebase as a sort of API caching layer. This protects against rate limiting on the Rotten Tomatoes API, decreases request time by caching queries to the Fandango-via-YQL API, and eliminates an extra request per movie for Youtube trailers.
At the beginning, this system made it possible to host TheReelBox on my public dropbox folder, which made for really fast development. Since launch I've moved the static html and js to a micro AWS instance, but Firebase cleanly and transparently handles all the data.
Definitely recommend it.
Re: Show HN: Firebase, a scalable real-time backend
#5Re: Show HN: Firebase, a scalable real-time backend
#6From the Leader Board sample:
// Use setWithPriority to put the name / score in Firebase, and set the priority to be the score.
userScoreRef.setWithPriority({ name:name, score:newScore }, newScore);
How about I just change newScore to 100,000 in the debug window?
Re: Show HN: Firebase, a scalable real-time backend
#7This is cool. But can someone explain how data is secured in Firebase or Meteor? From the Leader Board sample: // Use setWithPriority to put the name / score in Firebase, and set the priority to be the score. userScoreRef.setWithPriority({ name:name, score:newScore }, newScore); How about I just change newScore to 100,000 in the debug window?
Re: Show HN: Firebase, a scalable real-time backend
#8Dropbox for JS objects.
If I've got that right, I think this is totally awesome for front-end web devs and the most exciting backend-as-a-service out there.
Re: Show HN: Firebase, a scalable real-time backend
#9I'm not trying to put down Firebase, I imagine it's great.
Re: Show HN: Firebase, a scalable real-time backend
#10(Absolutely loved the interactive tutorial. Brilliant way to show off the service!)