Using Ember.js and Firebase for powerful real-time applications
1–10 of 13 posts
Re: Using Ember.js and Firebase for powerful real-time applications
#2http://firebase.github.io/angularFire/examples/chat/
Source: https://github.com/firebase/angularFire/tree/gh-pages/exampl...
Re: Using Ember.js and Firebase for powerful real-time applications
#3In case anyone would like to compare, here's a similar example using Angular and Firebase: http://firebase.github.io/angularFire/examples/chat/ Source: https://github.com/firebase/angularFire/tree/gh-pages/exampl...
Re: Using Ember.js and Firebase for powerful real-time applications
#4Re: Using Ember.js and Firebase for powerful real-time applications
#5I absolutely love Firebase. It's dead simple to setup and a pleasure to use.
Re: Using Ember.js and Firebase for powerful real-time applications
#6In case anyone would like to compare, here's a similar example using Angular and Firebase: http://firebase.github.io/angularFire/examples/chat/ Source: https://github.com/firebase/angularFire/tree/gh-pages/exampl...
https://www.firebase.com/tutorial/#session/pxkpekf5ze3
Would love to see your angular demo implement authentication.
Also, your angular demo uses angularfire.js.
Re: Using Ember.js and Firebase for powerful real-time applications
#7I absolutely love Firebase. It's dead simple to setup and a pleasure to use.
Have you tried Meteor? I've been comparing the two.
Re: Using Ember.js and Firebase for powerful real-time applications
#8I've been reading the docs and questions like these are not readily accessible.
Re: Using Ember.js and Firebase for powerful real-time applications
#9Regarding Firebase: * How do you access logs * How do you email users * How do you run cron-like jobs * How are passwords stored? Are they salted? AES256 encryption? I've been reading the docs and questions like these are not readily accessible.
You can also observe arbitrary data changes and log any info that is relevant to you.
As for passwords, we have a few details here at the bottom of the page here: https://www.firebase.com/docs/security-quickstart.html
The short answer is that we use bcrypt for password storage.
Hope that helps!
Re: Using Ember.js and Firebase for powerful real-time applications
#10Regarding Firebase: * How do you access logs * How do you email users * How do you run cron-like jobs * How are passwords stored? Are they salted? AES256 encryption? I've been reading the docs and questions like these are not readily accessible.
Firebase engineer here. For things like chron jobs / emails / any logging you want to do, you can run a node server that uses the javascript SDK. That lets you do things like, "any time a user writes to this location, send an email with the contents of the data". You can also observe arbitrary data changes and log any info that is relevant to you. As for passwords, we have a few details here at the bottom of the page…