The 5th version of the reactive extensions for javascript.
This tag is for questions regarding the 5th version of the ReactiveX framework for the JavaScript language.
Basics
RxJS is a framework for Observables. Observables are similar to Promises, in that they represent data, that may not jet be available. The difference is, that Observables can get multiple results (they are said to observe multiple events). These events could be anything, like clicks on a button, or network requests.
RxJS
rxjs provides an API for working with Observables in JavaScript. It has many methods, that allow modifying Observables, similar to how map()
, filter()
and reduce()
work on ES6 Arrays.
Links
Before asking an rxjs5 question here on StackOverflow, please make sure to read the official documentation.