Skip to content

Commit

Permalink
Updated README with links that point to docs in FAQ section.
Browse files Browse the repository at this point in the history
  • Loading branch information
prescottprue committed Oct 29, 2016
1 parent b76e638 commit 13d7aa0
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@ View deployed version of Material Example [here](https://redux-firebasev3.fireba
## Features
- Integrated into redux
- Support for updating and nested props
- Population capability (similar to mongoose's `populate` or SQL's `JOIN`)
- [Population capability](https://prescottprue.gitbooks.io/react-redux-firebase/content/populate.html) (similar to mongoose's `populate` or SQL's `JOIN`)
- Out of the box support for authentication (with auto load user profile)
- Firebase Storage Support
- Support small data ( using `value` ) or large datasets ( using `child_added`, `child_removed`, `child_changed` )
- queries support ( `orderByChild`, `orderByKey`, `orderByValue`, `orderByPriority`, `limitToLast`, `limitToFirst`, `startAt`, `endAt`, `equalTo` right now )
- Automatic binding/unbinding
- Declarative decorator syntax for React components
- [`redux-thunk`](https://github.com/gaearon/redux-thunk) Integration
- Firebase v3+ support

## Install
Expand Down Expand Up @@ -252,17 +253,17 @@ export const addTodo = (newTodo) =>

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

This library was actually originally forked from redux-react-firebase, but adds extended functionality such as:
* populate functionality
* profileDecorator - change format of profile stored on Firebase
* getFirebase - access to firebase that fires actions
* capability for thunk integration - using `getFirebase` and `thunk.withExtraArgument`
This library was actually originally forked from redux-react-firebase, but adds extended functionality such as:
* [populate functionality](https://prescottprue.gitbooks.io/react-redux-firebase/content/populate.html) (similar to mongoDB or SQL JOIN)
* [`profileDecorator`](https://prescottprue.gitbooks.io/react-redux-firebase/content/config.html) - change format of profile stored on Firebase
* [`getFirebase`](https://prescottprue.gitbooks.io/react-redux-firebase/content/thunks.html) - access to firebase instance that fires actions when methods are called
* [capability for thunk integration](https://prescottprue.gitbooks.io/react-redux-firebase/content/thunks.html) - using `getFirebase` and `thunk.withExtraArgument`

Bottom line: The auth of redux-react-firebase was absent when functionality was needed by me and others, so this library was created.
Bottom line: The auth of redux-react-firebase was absent when functionality was needed by me and others, so this library was created.

2. Why use redux if I have Firebase?
2. Why use redux if I have Firebase to store state?

This isn't a super quick answer, so I wrote up [a medium article to explain](https://medium.com/@prescottprue/firebase-with-redux-82d04f8675b9)
This isn't a super quick answer, so I wrote up [a medium article to explain](https://medium.com/@prescottprue/firebase-with-redux-82d04f8675b9)


## Contributors
Expand Down

0 comments on commit 13d7aa0

Please sign in to comment.