Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 1.31 KB

getting_more_from_redux_and_ngrx.md

File metadata and controls

18 lines (12 loc) · 1.31 KB

Getting More From Redux and Ngrx

Redux

Redux has a number of tools and middleware available in its ecosystem to facilitate elegant app development.

  • Redux DevTools - a tool that displays a linear timeline of actions that have interacted with its store. Allows for replaying actions and error handling
  • redux-thunk - middleware that enables lazy evaluation of actions
  • redux-observable - an RxJS-based model for handling side-effects on action streams.
  • *ng2-redux-router - reactive glue between the Angular 2 router and your redux store.

Ngrx

Ngrx provides most of its Redux implementation through the ngrx/store module. Other modules are available for better integration and development.