NgRx – Strongly Typing the State and Building Selectors

Introduction In an introductory post we started with the basics of NgRx. We covered the first steps towards centralized state management for our application using NgRx which is Redux pattern tailored for Angular. We installed the NgRx store and wired-it up in our application. We saw, how we can structure our application state in small … Read more

NgRx – Basics

Introduction NgRx is a framework for building reactive applications. It is Redux pattern tailored for Angular. The purpose of NgRx is to provide a formal pattern for Key Concepts @ngrx/store: Store is RxJS powered global state management for angular apps. Actions: describe unique evens that are dispatched from components and services.Reducers: state changes are handled … Read more