Slide 3
Slide 3 text
ReactiveX JavaScript (RXJS)
● RXJS is a JavaScript Implementation of ReactiveX Library
● ReactiveX is a library for composing async events using the observer pattern
● ReactiveX is a combination of the best ideas from
the Observer pattern, the Iterator pattern, and functional programming
● The observer pattern is a software design pattern where a subject maintains a list of listeners (observers)
and notifies them of any changes.
● ReactiveX is not specific to JavaScript and there are implementation for other languages such as RxJava,
RxDart, RxPHP, RxGo, etc.