top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the main use for Redux in Angular?

0 votes
367 views

Every angular project is required for Redux ? or only required for large applications.

posted Aug 26, 2018 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Redux provides a predictable state container. It is inspired by Flux and helps you implement a one-way data flow in your Angular applications.

Combing Redux, Angular, and a bindings library called ng-Redux, we solve these problems.

This combination will allow you to:

  • View the entire state of your application
  • Derive your UI from this
  • state See how actions modify the state of your application
answer Nov 30, 2018 by Nikita Sehgal
...