Hello people.
I am trying to architect a new Angular application, and I would like any suggestions on how to utilize the new Signals API to create state management and data services.
I have been using the Data services with rxjs Subjects/BehaviorSubjects pattern for many years successfully, and I would like any info on how to implement something similar using Signals. I understand that I can map observables to Signals and vice-versa, but it seems that this pattern is useful only if you need to adopt signals in an existing project, and cannot afford the effort of re-writing your data/state management.
Maybe I am wrong, but it feels like this isn't the best approach to use Signals.
p.s. I do not want to use any 3d party state management library like ngrx, redux etc
Thanks!