• Why RxJS is valuable to us • How React & Vue are reactive in a similar way • Benefits of combining RxJS with React & Vue • How to use it in production?
yet) • Used for modelling push-based data sources (intervals, sockets, etc) • Think streams, which can keep emitting values multiple times • They are lazy (nothing happens until you subscribe) • They can be cancelled • They are compositional (think higher-order functions) TC39 Proposal: https://github.com/tc39/proposal-observable
Observable streams • Cross-platform: JS, Java, .NET, Swift, and more • Functional: clean input/output functions over Observable streams More on http://reactivex.io/
implementation the TC39 proposal for Observables • RxJS is more than just the TC39 proposal • Lots of operators to compose your Observables More on http://reactivex.io/rxjs/