Ngrx state management basics 2021 - Ngrx store/Actions/Reducers. We take a look at the core principles of Redux on which the ngrx store is based. After that we explore the different components of ngrx store
Action - An event/interface which is dispatched when a UI/network interaction occurs.
Reducers - Pure functions which handle the actions and create a new state based on the current state and the Action.
Store - The single source of truth which represents the current state of the application.
Selectors - Selectors bind the current store values back to the UI completing the unidirectional flow of data.
Github url - https://github.com/anuroopjoy/ngrx-ba...
00:00 - Introduction
03:02 - Install @ngrx/store
04:24 - Actions
08:38 - Install store-devtools
10:13 - Reducers
17:33 - Selectors