redux-localstorage-debounce
v0.1.0
Published
Storage enhancer to debounce persist requests.
Downloads
25,044
Maintainers
Readme
redux-localstorage-debounce
Storage enhancer to debounce persist requests.
To improve performance, debounce allows you to delay consecutive store changes and persist them periodically instead.
Installation
npm install --save redux-localstorage-debounce
Usage
const storage = compose(
debounce(100),
)(adapter(localStorage));
For more information on using storage enhancers check out redux-localstorage
API
debounce(wait[, maxWait])
Persist calls are delayed until wait
milliseconds since the last time the function was invoked. In order to prevent an endless stream of consecutive state changes from ever persisting, you can pass in a second argument that specifies the maxWait
milliseconds that a persist call is allowed to be delayed.
Note: Internally debounce utilizes lodash.debounce, rather then specifying the maxWait as second argument you can pass in an object with options as specified by lodash.
License
MIT