redux-pouchdb-plus
redux-pouchdb-plus copied to clipboard
Synchronize Redux store with PouchDB to have a persistent store.
Does this library support `redux-pouchdb`'s `persistentCollectionReducer`? I would like to save each array element as a separate document in pouchdb. Attempting to move to this library due to [this race...
Using version 7.x of pouchdb allow this package to be used with Node 12. Explanation: PouchDB is using package leveldown. In version 6.x it uses [email protected] which cannot be build...
Useful, in my case, because I only want to send the local state to the database when we hit milestone actions. Something like transactions, if you will. ```js store.dispatch( {...
First of all thank you for the great work! I've been using `redux-pouchdb` without any problems, but the `reinit()` was required so I switched to your library. The app is...
I have been working on a version of this module that allows some properties of a reducer's state to be saved in an attachment rather than in the document. The...