DEV Community

Discussion on: Simple state management in Angular with only Services and RxJS

Collapse
 
iain_adams profile image
Iain Adams

This is exactly what I do in my project. I trialled ngrx/store but found it so overly bloated with a ridiculous amount of boilerplate for very little gain. This pattern is simple, elegant, easy to reason about.

Collapse
 
lysofdev profile image
Esteban Hernández

Give ngrx/data a look for a more streamlined version of ngrx/store. It's excellent for managing collections of objects. It provides almost all of the functionality you might need out of the box and is based on configuration so you end up writing very little logic.