Testability as @muetzerich mentioned already is also a benefit of using ngrx/store. Reducers are pure functions and those functions are easy to test, because they take an input and simply return an output and do not depend on properties outside the function and have no side-effects, e.g. http calls etc.
Read moreWhat is NgRx store?
Ngrx is a group of Angular libraries for reactive extensions . Ngrx/Store implements the Redux pattern using the well-known RxJS observables of Angular 2. It provides several advantages by simplifying your application state to plain objects, enforcing unidirectional data flow, and more.
Read moreHow do I create a NgRx store?
Angular 10 NgRX Store by Example
Read moreWhy we use NgRx store in Angular?
Inspired by Redux, NgRx provides a way to maintain data in your Angular application as a single source of truth . NgRx uses streams to interact with a data store. This data store connects to your components and services, and ultimately simplifies the entire process of data management in your Angular application.
Read more