EmberFire (Firebase + Ember Data)
EmberFire is the officially supported adapter for using
Firebase with
Ember Data.
Join the Firebase + Ember Google Group
to ask technical questions, share apps you've built, and chat with other developers in the community.
Compatibility
Please consult this table when selecting your version of EmberFire and Firebase:
Ember Data | EmberFire | Firebase SDK |
---|
beta.12 - beta.18 | 1.4.x | 2.x |
beta.19 | none | 2.x |
1.13+ | 1.5.x | 2.x |
2.0 - 2.2 | 1.6.x | 2.x |
2.3+ | 2.0.x | 3.x |
canary | master | 3.x |
To install the master
branch, use ember install firebase/emberfire#master
Installation
To install EmberFire as an addon with ember-cli, run the following command within your app's directory:
$ ember install emberfire
This will create a app/adapters/application.js
. All you need to do is update your Firebase property in config/environment.js
with the initializeApp config found on the Firebase console (select your project and click [Add Firebase to your web app] on the overview page):
var ENV = {
firebase: {
apiKey: 'xyz',
authDomain: 'YOUR-FIREBASE-APP.firebaseapp.com',
databaseURL: 'https://YOUR-FIREBASE-APP.firebaseio.com',
storageBucket: 'YOUR-FIREBASE-APP.appspot.com',
},
contentSecurityPolicy: {
'script-src': '\'self\' \'unsafe-eval\' apis.google.com',
'frame-src': '\'self\' https://*.firebaseapp.com',
'connect-src': '\'self\' wss://*.firebaseio.com https://*.googleapis.com'
},
Your Firebase data will now be synced with the Ember Data store. For detailed EmberFire documentation, check out the quickstart or guide in the Firebase docs.
Nested Addon Usage Caveat
To publish an addon that exports functionality driven by EmberFire,
note that EmberFire must be listed in the dependencies
for NPM
and not the devDependencies
.
When consuming an addon that consumes EmberFire, running the
initializing generator by hand is required.
ember generate ../node_modules/your-addon/node_modules/emberfire/blueprints/emberfire
Using EmberFire without ember-cli
EmberFire also works without ember-cli. See the Firebase documentation for instructions on getting started.
Contributing to EmberFire
If you'd like to contribute to EmberFire, run the following commands to get your environment set up:
Setup
git clone
this repositorynpm install -g ember-cli bower gulp phantomjs
npm install
bower install
Using your local EmberFire workdir in another local project
From your emberfire
workdir
npm link
npm prune --production
(removes dev dependencies, these can trip you up!)
From your app workdir
Running tests
ember test
ORember test --server
Running tests against a specific version of ember-data
ember try:one <scenario>
where <scenario>
is one of the scenarios in config/ember-try.js
Example:
ember try:one ember-data-canary
Running the FireBlog demo app