DEV Community

Discussion on: Asynchronous Javascript: 3 ways

Collapse
 
dezfowler profile image
Derek Fowler • Edited

How about observer pattern e.g. rxjs?

Not native but can't really be overlooked as it's the most readable and powerful of the lot IMO and has the advantage over all the others that they're cancellable.

Collapse
 
wolfhoundjesse profile image
Jesse M. Holmes

Don't be discouraged. Someday our native Observables dream will come true.

Collapse
 
tbutterwith profile image
Tom Butterwith

I think for most people native async management is enough. rxjs is a entity unto itself and would require it's own write up, and the observer pattern in general comes with it's own set of pros and cons.