0.2.0 • Published 8 years ago

redux-react-connect-by-name v0.2.0

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

redux-react-connect-by-name

A redux connector that allows you to:

  • Name your reducers and actions
  • Reuse a general selector for your reducer

This has a few benefits of:

  • Have you action creators bound to dispatch for you
  • Not requiring you to specify a new selector for every component you want to connect to the redux store
  • Have consistent namespacing for components that connect to multiple reducers' state
  • Keeping the component file clean of selector construction
  • Create a convenient location in the reducer to expose derived state

Install

npm install redux-react-connect-by-name

Usage

...to be revealed