Search⌘ K

Setting Up NgRx Effects

Discover how to set up NgRx Effects in an Angular application by installing the necessary library and configuring the EffectsModule. This lesson guides you through the installation process, file updates, and validation to enhance your app’s state management with side effect handling.

We'll cover the following...

Installation guide

We can install @ngrx/effects in an Angular application using the Angular CLI. Run the following command inside the application’s root folder:

Shell
ng add @ngrx/effects --skip-confirmation

The ...