NgRx Concepts Flashcards
1
Q
What is ngrx?
A
A reactive state management library for Angular applications.
2
Q
What are the core concepts of ngrx?
A
Store
3
Q
What is the Store in ngrx?
A
The central state container of the application.
4
Q
What are Actions in ngrx?
A
Messages that describe the intent to change the application state.
5
Q
What are Reducers in ngrx?
A
Pure functions that take the current state and an action
6
Q
What are Selectors in ngrx?
A
Functions that select parts of the state to be used in components.
7
Q
What are Effects in ngrx?
A
Side effects that can be triggered by actions