You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 25, 2018. It is now read-only.
BackFire is the officially supported [Backbone](http://backbonejs.org) binding for Firebase. The bindings let you use special model and collection types that allow for synchronizing data with [Firebase](http://www.firebase.com/?utm_medium=web&utm_source=backfire).
6
+
BackboneFire is the officially supported [Backbone](http://backbonejs.org) binding for Firebase. The bindings let you use special model and collection types that allow for synchronizing data with [Firebase](http://www.firebase.com/?utm_medium=web&utm_source=backbonefire).
7
7
8
8
## Live Demo
9
9
10
-
Play around with our [realtime Todo App demo](https://backbonefire.firebaseapp.com/). This Todo App is a simple port of the TodoMVC app using Backfire.
10
+
Play around with our [realtime Todo App demo](https://backbonefire.firebaseapp.com/). This Todo App is a simple port of the TodoMVC app using BackboneFire.
11
11
12
12
## Basic Usage
13
-
Using BackFire collections and models is very similar to the regular ones in Backbone. To setup with Backfire use `Backbone.Firebase` rather than just `Backbone`.
13
+
Using BackboneFire collections and models is very similar to the regular ones in Backbone. To setup with BackboneFire use `Backbone.Firebase` rather than just `Backbone`.
14
14
15
15
```javascript
16
16
// This is a plain old Backbone Model
@@ -28,9 +28,9 @@ var Todos = Backbone.Firebase.Collection.extend({
28
28
});
29
29
```
30
30
31
-
## Downloading BackFire
31
+
## Downloading BackboneFire
32
32
33
-
To get started include Firebase and BackFire after the usual Backbone dependencies (jQuery, Underscore, and Backbone).
33
+
To get started include Firebase and BackboneFire after the usual Backbone dependencies (jQuery, Underscore, and Backbone).
34
34
35
35
```html
36
36
<!-- jQuery -->
@@ -45,29 +45,29 @@ To get started include Firebase and BackFire after the usual Backbone dependenci
Use the URL above to download both the minified and non-minified versions of BackFire from the
52
+
Use the URL above to download both the minified and non-minified versions of BackboneFire from the
53
53
Firebase CDN. You can also download them from the
54
-
[releases page of this GitHub repository](https://github.com/firebase/backfire/releases).
55
-
[Firebase](https://www.firebase.com/docs/web/quickstart.html?utm_medium=web&utm_source=backfire) and
54
+
[releases page of this GitHub repository](https://github.com/firebase/backbonefire/releases).
55
+
[Firebase](https://www.firebase.com/docs/web/quickstart.html?utm_medium=web&utm_source=backbonefire) and
56
56
[Backbone](http://backbonejs.org/) can be downloaded directly from their respective websites.
57
57
58
-
You can also install BackFire via Bower and its dependencies will be downloaded automatically:
58
+
You can also install BackboneFire via Bower and its dependencies will be downloaded automatically:
59
59
60
60
```bash
61
-
$ bower install backfire --save
61
+
$ bower install backbonefire --save
62
62
```
63
63
64
-
Once you've included BackFire and its dependencies into your project, you will have access to the `Backbone.Firebase.Collection`, and `Backbone.Firebase.Model` objects.
64
+
Once you've included BackboneFire and its dependencies into your project, you will have access to the `Backbone.Firebase.Collection`, and `Backbone.Firebase.Model` objects.
65
65
66
66
67
67
## Getting Started with Firebase
68
68
69
-
BackFire requires Firebase in order to sync data. You can
70
-
[sign up here](https://www.firebase.com/signup/?utm_medium=web&utm_source=backfire) for a free
69
+
BackboneFire requires Firebase in order to sync data. You can
70
+
[sign up here](https://www.firebase.com/signup/?utm_medium=web&utm_source=backbonefire) for a free
71
71
account.
72
72
73
73
## autoSync
@@ -270,21 +270,21 @@ MyTodo.destroy(); // Model is instantly removed from Firebase (and other clients
270
270
271
271
## Contributing
272
272
273
-
If you'd like to contribute to BackFire, you'll need to run the following commands to get your
273
+
If you'd like to contribute to BackboneFire, you'll need to run the following commands to get your
0 commit comments