Skip to content

elgerlambert/redux-localstorage-debounce

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

license npm version npm downloads

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

About

Storage enhancer to debounce persist requests.

Resources

License

Stars

Watchers

Forks

Packages

No packages published