Introduction

RxJS is a library for composing asynchronous and event-based programs by using observable sequences. It provides one core type, the Observable, satellite types (Observer, Schedulers, Subjects) and operators inspired by Array#extras (map, filter, reduce, every, etc) to allow handling asynchronous events as collections.

Think of RxJS as Lodash for events.

ReactiveX combines the Observer pattern with the Iterator pattern and functional programming with collections to fill the need for an ideal way of managing sequences of events.

The essential concepts in RxJS which solve async event management are:

First examples

Normally you register event listeners.

const button = document.querySelector('button'); button.addEventListener('click', () => console.log('Clicked!'));

Using RxJS you create an observable instead.

const { fromEvent } = rxjs; const button = document.querySelector('button'); fromEvent(button, 'click') .subscribe(() => console.log('Clicked!'));

Purity

What makes RxJS powerful is its ability to produce values using pure functions. That means your code is less prone to errors.

Normally you would create an impure function, where other pieces of your code can mess up your state.

var count = 0; var button = document.querySelector('button'); button.addEventListener('click', () => console.log(`Clicked ${++count} times`));

Using RxJS you isolate the state.

const { fromEvent } = rxjs; const { scan } = rxjs.operators; const button = document.querySelector('button'); fromEvent(button, 'click').pipe( scan(count => count + 1, 0) ) .subscribe(count => console.log(`Clicked ${count} times`));

The scan operator works just like reduce for arrays. It takes a value which is exposed to a callback. The returned value of the callback will then become the next value exposed the next time the callback runs.

Flow

RxJS has a whole range of operators that helps you control how the events flow through your observables.

This is how you would allow at most one click per second, with plain JavaScript:

var count = 0; var rate = 1000; var lastClick = Date.now() - rate; var button = document.querySelector('button'); button.addEventListener('click', () => { if (Date.now() - lastClick >= rate) { console.log(`Clicked ${++count} times`); lastClick = Date.now(); } });

With RxJS:

const { fromEvent } = rxjs; const { throttleTime, scan } = rxjs.operators; const button = document.querySelector('button'); fromEvent(button, 'click').pipe( throttleTime(1000), scan(count => count + 1, 0) ) .subscribe(count => console.log(`Clicked ${count} times`));

Other flow control operators are filter, delay, debounceTime, take, takeUntil, distinct, distinctUntilChanged etc.

Values

You can transform the values passed through your observables.

Here's how you can add the current mouse x position for every click, in plain JavaScript:

let count = 0; const rate = 1000; let lastClick = Date.now() - rate; const button = document.querySelector('button'); button.addEventListener('click', (event) => { if (Date.now() - lastClick >= rate) { count += event.clientX; console.log(count) lastClick = Date.now(); } });

With RxJS:

const { fromEvent } = rxjs; const { throttleTime, map, scan } = rxjs.operators; const button = document.querySelector('button'); fromEvent(button, 'click').pipe( throttleTime(1000), map(event => event.clientX), scan((count, clientX) => count + clientX, 0) ) .subscribe(count => console.log(count));

Other value producing operators are pluck, pairwise, sample etc.