Introduction to EmberFire
Explore how to integrate Ember.js applications with Firebase using EmberFire. Learn to install and configure EmberFire, manage data persistence with Ember Data, and perform operations like saving and retrieving records in Firebase.
We'll cover the following...
We'll cover the following...
EmberFire is a Firebase adapter for Ember applications. It integrates and works directly with Ember Data, which persists our application data. EmberFire can be installed as an Ember CLI addon.
Installing EmberFire
To install EmberFire in our application, we can run the following Ember CLI command:
ember install emberfire@next
Note: We don’t need to install it now because the Educative platform has EmberFire preinstalled.
Running the ...