NgRx stands for Angular Reactive Extensions. In short, it is a state management system based on the Redux pattern . This will help us to manage the application state in a bigger angular application. Let’s try to understand more about NgRx by considering a simple angular app Bike Rental Portal.
Read moreWhy is state management so important?
When you have state management in place data actually flows from your app to state and vice versa. You know exactly where your data is . These state management tools also give you a point-in-time snapshot of the entire data. In that way, you know exactly where your data is and that makes your development faster.
Read more