redux-persist-realm

0.1.0 • Public • Published

Redux-persist-realm

A Realmjs interface for redux-persist

Dependencies

Installation

If you already have realm and redux-persist

npm i --save redux-persist-realm
# or
yarn add redux-persist-realm

Else

npm i --save redux-persist realm redux-persist-realm
# or
yarn add redux-persist realm redux-persist-realm
react-native link realm

Usage

import {compose, applyMiddleware, createStore} from 'redux'
import {persistStore, autoRehydrate} from 'redux-persist'
+ import realmPersistInterface from 'redux-persist-realm'
 
// add `autoRehydrate` as an enhancer to your store (note: `autoRehydrate` is not a middleware)
const store = createStore(
  reducer,
  undefined,
  compose(
    applyMiddleware(...),
    autoRehydrate()
  )
)
 
+ const config = {
+   storage: realmPersistInterface
+ }
 
// begin periodically persisting the store
- persistStore(store)
+ persistStore(store, config)

Don't hesitate to publish Issues if you see something missing!

Package Sidebar

Install

npm i redux-persist-realm

Weekly Downloads

2

Version

0.1.0

License

MIT

Last publish

Collaborators

  • adrienthiery