Do Signals replace RxJS Observables?

preview_player
Показать описание

Signals recently gained popularity in frontend web development. They are implemented by modern web frameworks like Qwik and SolidJS. Also, Angular adopted them. But what exactly are they, and do they replace RxJS Observables altogether?

🕐 Timestamps:
00:00 - Intro
00:43 - What is a Signal?
02:43 - What can we do with Signals?
03:32 - Fine-grained Reactivity
03:51 - Comparison
Рекомендации по теме
Комментарии
Автор

Never stop learning: Could you not just use Rxjs together with Typescript Template Literals to create a reactive view?

hansschenker
Автор

Amazing video showcasing signals and their difference with observables

Btw signals are good for local state management for simple services and RxJS's observables are good for global state management (with NgRx for instance) and HTTP requests

LePhenixGD
Автор

So a signal is basically an rxjs subject?

wahoobeans
Автор

What is an example of more complex problems that require RxJS?

more-sun
Автор

Repeat after me: Signals & Observables, not Signals vs Observables

developeroppa
Автор

I think some functionalities can not be lazy (like state mgmt) - that is why signals are built in contrast with Observables.

nikhilgoyal