terpiljenya / redux-chain-middleware

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

redux-chain-middleware

redux middleware which allows dispatching promise action creators sequentially

Usage


sequentially

dispatch([
  a(),
  b(),
  c()
])

concurrently

dispatch(a())
dispatch(b())
dispatch(c())

About


Languages

Language:JavaScript 100.0%