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
You can view a live version of this demo [here](https://reactfiretodoapp.firebaseapp.com/).
7
+
8
+
Setup Instructions
9
+
--------------------
10
+
To run this example locally, either download the whole ReactFire repo or just this /todoApp/
11
+
directory. From the /todoApp/ directory, install the needed dependencies via bower:
12
+
13
+
```bash
14
+
$ bower install
15
+
```
16
+
17
+
Then start up a server via Python (or your favorite method):
18
+
19
+
```bash
20
+
$ python -m SimpleHTTPServer 8080
21
+
```
22
+
23
+
Now you should be able to visit the example in the browser of your choice at [http://127.0.0.1:8080/](http://127.0.0.1:8080/).
24
+
25
+
Description
26
+
-----------
27
+
This example shows three different ways to make a Todo app using React. It is adapted from the
28
+
Todo app example on the [ReactJS homepage](http://facebook.github.io/react/). There are three
29
+
different versions of the Todo app example:
30
+
31
+
1.__Plain React:__ Almost an exact copy of the ReactJS homepage example. This uses plain React
32
+
code with no Firebase code at all. Changes made to this example are not persistent.
33
+
34
+
2.__React + Plain Firebase:__ A version of the first example with explicit Firebase calls. Changes
35
+
made to this example are persistent.
36
+
37
+
3.__ReactFireMixin:__ A version of the first example which uses the ReactFireMixin. Changes made to
38
+
this example are persistent.
39
+
40
+
Walkthrough
41
+
-----------
42
+
To learn more about how this example works, see the [blog post on the official Firebase blog](https://www.firebase.com/blog/2014-05-01-using-firebase-with-react.html).
0 commit comments