redux-localstorage-debounce
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/redux-localstorage-debounce package

0.1.0 • Public • Published

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

Package Sidebar

Install

npm i redux-localstorage-debounce

Weekly Downloads

4,153

Version

0.1.0

License

MIT

Last publish

Collaborators

  • elgerlambert