Are projects still chosing to pick RxJS (or equivalent) which make the code heavily layered and a pain to debug?
Or has sanity reached the Angular ecosystem by now?
Everything is signals now.
The problem with Angular is that the http client service used to return observables by default and that made people think that you had to use them as such. It was a mostly useless, massive pain. Working with Angular became a pleasure the moment we decided to just cast our service calls to promises.
For the rest, RxJS is cool where you actually need it and want it.
I believe Signals are the go-to now, but surely RxJS is still present for complex use cases. Are Zones fully gone?