...

/

When to use and not to use NgRx

When to use and not to use NgRx

Find out what to consider before implementing NgRx in an Angular application.

Introduction

NgRx is a great tool for state management, but it’s not always the right choice for every application. We need to think carefully before using NgRx in an Angular app. There are several scenarios we need to take into account before implementing NgRx in an Angular app.

Application size

The size of our application can be a determining factor in whether NgRx is suitable for us. If our app is small and simple, NgRx might be overkill.

However, if our ...