Thursday, June 18, 2015

Reactive Programming in JavaScript - Reactive Manifesto

Reactive Programming in JavaScript could be considered the next evolution of asynchronous programming; the next pattern for asynchronous development after JavaScript promised based patterns.
 
Reactive Manifesto - http://www.reactivemanifesto.org/
 
RxJS
 
MS Open Technologies has developed RxJS - RxJS or Reactive Extensions for JavaScript is a library for transforming, composing, and querying streams of data.
 
 
The Reactive Extensions for JavaScript (RxJS) is a set of libraries for composing asynchronous and event-based programs using observable sequences and fluent query operators that many of you already know by Array#extras in JavaScript. Using RxJS, developers represent asynchronous data streams with Observables, query asynchronous data streams using our many operators, and parameterize the concurrency in the asynchronous data streams using Schedulers. Simply put, RxJS = Observables + Operators + Schedulers.
 
RxJS Overview
 

No comments:

Post a Comment