• RxJS is a library for composing (combining) asynchronous and event-based programs by using observable sequences.

  • It is a part of ReactiveX

  • ReactiveX is an API for asynchronous programming with observable streams, implementations are provided in multiple languages here

  • Observer AKA Event-Subscriber, Listener

  • what I have understood from observer pattern is that you have one Publisher class which maintains the list to reference Subscribers, and each Subscribers have one common method in place which Publisher can call after performing business logic with some Context

SingleMultiple
PullFunctionIterator
PushPromiseObservable
"The core of Reactive Programming is an extended implementation of the observer pattern, or as I like to call it "The Observer Pattern on Steroids". There is no black magic in reactive programming, just a nice(r) API to construct and compose observers and observables. (IHMO)"

- Christophe


*Sources