redux-debounce
FSA-compliant middleware for Redux to debounce actions.
Installation
$ npm install --save redux-debounce
Usage
// Store setup const config = simple: 300 const debouncer = const logger = const createMiddleware = const store = reducer const debounceAction = meta: debounce: 'simple' type: 'TEST'
Debounce middleware should be placed near the top of the chain.
Example
See the example directory.
$ cd example$ npm install$ npm start
API
redux-debounce
exposes single constructor function for creating debounce middleware.
createDebounce( options: Object )
Options
Each option is a property to setup different debounces for different actions.
Number
Number of milliseconds to debounce the action for.
Object
wait (Number)
Number of milliseconds to debounce the action for.
maxWait (Number)
Maximum number of milliseconds before the action is called.
See lodash for the rest of the supported options.
License
Copyright © 2015-2016 Neil Kistner
Released under the MIT license. See license for details.