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
* fix(types): update see links to point to base docs site
* fix(docs): update see links to point to base docs site
* fix(docs): update README to include old versions section instead of note about `next`
Copy file name to clipboardExpand all lines: README.md
+5-3
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ The [Material Example](https://github.com/prescottprue/react-redux-firebase/tree
23
23
24
24
* Out of the box support for authentication (with auto load user profile)
25
25
* Full Firebase Platform Support Including Real Time Database, Firestore, and Storage
26
-
* Automatic binding/unbinding of listeners through React Higher Order Components (`firebaseConnect` and `firestoreConnect`)
26
+
* Automatic binding/unbinding of listeners through React Hooks (`useFirebaseConnect`, `useFirestoreConnect`) or Higher Order Components (`firebaseConnect` and `firestoreConnect`)
27
27
*[Population capability](http://react-redux-firebase.com/docs/populate) (similar to mongoose's `populate` or SQL's `JOIN`)
28
28
* Support small data ( using `value` ) or large datasets ( using `child_added`, `child_removed`, `child_changed` )
@@ -33,8 +33,6 @@ The [Material Example](https://github.com/prescottprue/react-redux-firebase/tree
33
33
34
34
## Installation
35
35
36
-
Interested in support for [`react-redux@^6`](https://github.com/reduxjs/react-redux) or the [new react context API](https://reactjs.org/docs/context.html)? Checkout [the `next` branch which contains the next upcoming major version](https://github.com/prescottprue/react-redux-firebase/tree/next) (installed through `npm i --save react-redux-firebase@next`).
37
-
38
36
```bash
39
37
npm install --save react-redux-firebase
40
38
```
@@ -43,6 +41,10 @@ This assumes you are using [npm](https://www.npmjs.com/) as your package manager
43
41
44
42
If you're not, you can access the library on [unpkg](https://unpkg.com/redux-firestore@latest/dist/redux-firestore.min.js), download it, or point your package manager to it. Theres more on this in the [Builds section below](#builds).
45
43
44
+
### Older Versions
45
+
46
+
Interested in support for versions of [`react-redux`](https://github.com/reduxjs/react-redux) before v6 or the [new react context API](https://reactjs.org/docs/context.html)? Checkout the `v2.*.*` versions (installed through `npm i --save react-redux-firebase^@2.5.0`).
47
+
46
48
## Use
47
49
48
50
Include `firebaseReducer` (reducer) while creating your redux store then pass dispatch and your firebase instance to `ReactReduxFirebaseProvider` (context provider):
0 commit comments