bingeboy / reactive-poc-notes

1 stars 0 forks source link

Why Reactive? What about promises? #1

Open bingeboy opened 10 years ago

bingeboy commented 10 years ago

This will be one of the front running questions.

From rxjs: Promises are good for solving asynchronous operations such as querying a service with an XMLHttpRequest, where the expected behavior is one value and then completion. The Reactive Extensions for JavaScript unifies both the world of Promises, callbacks as well as evented data such as DOM Input, Web Workers, Web Sockets. Once we have unified these concepts, this enables rich composition.

I've never worked with Web Workers, might be fun to do for one of the examples.