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
Copy file name to clipboardExpand all lines: README.md
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,13 +19,14 @@ View deployed version of Material Example [here](https://redux-firebasev3.fireba
19
19
## Features
20
20
- Integrated into redux
21
21
- Support for updating and nested props
22
-
- Population capability (similar to mongoose's `populate` or SQL's `JOIN`)
22
+
-[Population capability](https://prescottprue.gitbooks.io/react-redux-firebase/content/populate.html) (similar to mongoose's `populate` or SQL's `JOIN`)
23
23
- Out of the box support for authentication (with auto load user profile)
24
24
- Firebase Storage Support
25
25
- Support small data ( using `value` ) or large datasets ( using `child_added`, `child_removed`, `child_changed` )
26
26
- queries support ( `orderByChild`, `orderByKey`, `orderByValue`, `orderByPriority`, `limitToLast`, `limitToFirst`, `startAt`, `endAt`, `equalTo` right now )
27
27
- Automatic binding/unbinding
28
28
- Declarative decorator syntax for React components
1. How is this different than [`redux-react-firebase`](https://github.com/tiberiuc/redux-react-firebase)?
254
255
255
-
This library was actually originally forked from redux-react-firebase, but adds extended functionality such as:
256
-
*populate functionality
257
-
*profileDecorator - change format of profile stored on Firebase
258
-
*getFirebase - access to firebase that fires actions
259
-
*capability for thunk integration - using `getFirebase` and `thunk.withExtraArgument`
256
+
This library was actually originally forked from redux-react-firebase, but adds extended functionality such as:
257
+
*[populate functionality](https://prescottprue.gitbooks.io/react-redux-firebase/content/populate.html) (similar to mongoDB or SQL JOIN)
258
+
*[`profileDecorator`](https://prescottprue.gitbooks.io/react-redux-firebase/content/config.html) - change format of profile stored on Firebase
259
+
*[`getFirebase`](https://prescottprue.gitbooks.io/react-redux-firebase/content/thunks.html) - access to firebase instance that fires actions when methods are called
260
+
*[capability for thunk integration](https://prescottprue.gitbooks.io/react-redux-firebase/content/thunks.html) - using `getFirebase` and `thunk.withExtraArgument`
260
261
261
-
Bottom line: The auth of redux-react-firebase was absent when functionality was needed by me and others, so this library was created.
262
+
Bottom line: The auth of redux-react-firebase was absent when functionality was needed by me and others, so this library was created.
262
263
263
-
2. Why use redux if I have Firebase?
264
+
2. Why use redux if I have Firebase to store state?
264
265
265
-
This isn't a super quick answer, so I wrote up [a medium article to explain](https://medium.com/@prescottprue/firebase-with-redux-82d04f8675b9)
266
+
This isn't a super quick answer, so I wrote up [a medium article to explain](https://medium.com/@prescottprue/firebase-with-redux-82d04f8675b9)
0 commit comments