Skip to content

Commit 13d7aa0

Browse files
committed
Updated README with links that point to docs in FAQ section.
1 parent b76e638 commit 13d7aa0

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@ View deployed version of Material Example [here](https://redux-firebasev3.fireba
1919
## Features
2020
- Integrated into redux
2121
- 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`)
2323
- Out of the box support for authentication (with auto load user profile)
2424
- Firebase Storage Support
2525
- Support small data ( using `value` ) or large datasets ( using `child_added`, `child_removed`, `child_changed` )
2626
- queries support ( `orderByChild`, `orderByKey`, `orderByValue`, `orderByPriority`, `limitToLast`, `limitToFirst`, `startAt`, `endAt`, `equalTo` right now )
2727
- Automatic binding/unbinding
2828
- Declarative decorator syntax for React components
29+
- [`redux-thunk`](https://github.com/gaearon/redux-thunk) Integration
2930
- Firebase v3+ support
3031

3132
## Install
@@ -252,17 +253,17 @@ export const addTodo = (newTodo) =>
252253

253254
1. How is this different than [`redux-react-firebase`](https://github.com/tiberiuc/redux-react-firebase)?
254255

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`
260261

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.
262263

263-
2. Why use redux if I have Firebase?
264+
2. Why use redux if I have Firebase to store state?
264265

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)
266267

267268

268269
## Contributors

0 commit comments

Comments
 (0)