redux-persist
redux-persist copied to clipboard
persist and rehydrate a redux store
There are a lot of options in [persistConfig](https://github.com/ninjacarr/redux-persist/blob/07055435550aebdeb948b9a0f78238c15ef4bf1b/src/types.js#L13) that aren't mentioned in the README. We should add a section to the README that documents each option you can declare in...
Update README.md
### Problem When i use redux-persist ```v5.6.9``` it shows a blank white screen on upgrading the version to `v6.0.0` it shows "Module not found: Error: Can't resolve 'redux-persist/integration/react' "
I'm working on a project where I need to migrate my data initially stored using AsyncStorage to another one: redux-persist-fs-storage Based on this issue: https://github.com/rt2zz/redux-persist/issues/679 I've manage to get the...
Example code, blacklisted the auth for rootPersistConfig , and for the authPersistConfig, not updating on storage from rootReducer, my goal here is auth from combineReducers will be stored on another...
Is it possible, I googled and search all issues... but couldn't find an answer... what I want to do is to have separate files/storages for different reducers. the reason is...
`const App: React.FC = () => { useEffect(() => { //useEffect stuff }, []) const CustomLoadingScreen = () => { console.log('Rendering') return ( Loading... ); };` ` return ( );...
Hello, I'm using react native version 0.62.0 and redux-persist version 5.10.0. It is not working for me when I enter the app I lose all the data. ``` import {...
We have an app where we are persisting some data using two different configurations. We have the root config using AsyncStorage and inside the rootReducer, we have a second reducer...
Have been using v4 without issues. Now it's not clear what key means, and how it playes with whitelist. I'm either missing something essential - in which case I'm sorry...