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 router and your redux store.

    @ngrx" class="reference-link">@ngrx

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

原文: https://angular-2-training-book.rangle.io/handout/state-management/ngrx/getting_more_from_redux_and_ngrx.html