/redux-promise-middleware

Redux middleware for promises, async functions and conditional optimistic updates

Primary LanguageJavaScriptMIT LicenseMIT

Redux Promise Middleware

npm version Build Status npm downloads

Redux Promise Middleware enables robust handling of async action creators in Redux: it accepts a promise and dispatches pending, fulfilled and rejected actions.

const promiseAction = () => ({
  type: 'PROMISE',
  payload: Promise.resolve(),
})

The middleware can also be combined with Redux Thunk to chain action creators.

const secondAction = (data) => ({
  type: 'TWO',
  payload: data,
})

const first = () => {
  return (dispatch) => {
    const response = dispatch({
      type: 'ONE',
      payload: Promise.resolve(),
    })

    response.then((data) => {
      dispatch(secondAction(data))
    })
  }
}

Documentation and Help

Issues and Pull Requests

Releases

Older versions:

Maintainers

Please reach out to us if you have any questions!

License

Code licensed with the MIT License (MIT).

Documentation licensed with the CC BY-NC License.