SN | Redux | Flux |
1. | Redux is an open-source JavaScript library used to manage application State | Flux is an architecture and not a framework or library |
2. | Store’s state is immutable | Store’s state is mutable |
3. | Can only have a single-store | Can have multiple stores |
4. | Uses the concept of reducer | Uses the concept of the dispatcher |
Leave a Reply