NgRx Concepts Flashcards

1
Q

What is ngrx?

A

A reactive state management library for Angular applications.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the core concepts of ngrx?

A

Store

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the Store in ngrx?

A

The central state container of the application.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are Actions in ngrx?

A

Messages that describe the intent to change the application state.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are Reducers in ngrx?

A

Pure functions that take the current state and an action

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are Selectors in ngrx?

A

Functions that select parts of the state to be used in components.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are Effects in ngrx?

A

Side effects that can be triggered by actions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly