Reactive-Extensions/RxJS
Reactive-Extensions/RxJS is an open-source project on GitHub with 19.4k stars, written primarily in JavaScript. The Reactive Extensions for JavaScript
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
Snapshot
Top contributors
Show top contributors
NOTE: The latest version of RxJS can be found here
The Need to go Reactive | About the Reactive Extensions | Batteries Included | Why RxJS? | Dive In! | Resources | Getting Started | What about my libraries? | Compatibility | Contributing | License
The Reactive Extensions for JavaScript (RxJS) 4.0...
...is a set of libraries to compose asynchronous and event-based programs using observable collections and Array#extras style composition in JavaScript
The project is actively developed by Microsoft, in collaboration with a community of open source developers.
The Need to go Reactive
Applications, especially on the web have changed over the years from being a simple static page, to DHTML with animations, to the Ajax revolution. Each time, we're adding more complexity, more data, and asynchronous behavior to our applications. How do we manage it all? How do we scale it? By moving towards "Reactive Architectures" which are event-driven, resilient and responsive. With the Reactive Extensions, you have all the tools you need to help build these systems.
About the Reactive Extensions
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.
Whether you are authoring a web-based application in JavaScript or a server-side application in Node.js, you have to deal with asynchronous and event-based programming. Although some patterns are emerging such as the Promise pattern, handling exceptions, cancellation, and synchronization is difficult and error-prone.
Using RxJS, you can represent multiple asynchronous data streams (that come from diverse sources, e.g., stock quote, tweets, computer events, web service requests, etc.), and subscribe to the event stream using the Observer object. The Observable notifies the subscribed Observer instance whenever an event occurs.
Because observable sequences are data streams, you can query them using standard query operators implemented by the Observable type. Thus you can filter, project, aggregate, compose and perform time-based operations on multiple events easily by using these operators. In addition, there are a number of other reactive stream specific operators that allow powerful queries to be written. Cancellation, exceptions, and synchronization are also handled gracefully by using the methods on the Observable object.
But the best news of all is that you already know how to program like this. Take for example the following JavaScript code, where we get some stock data and then manipulate and iterate the results.
/* Get stock data somehow */
const source = getAsyncStockData();
const subscription = source
.filter(quote => quote.price > 30)
.map(quote => quote.price)
.forEach(price => console.log(`Prices higher than $30: ${price}`));
Now what if this data were to come as some sort of event, for example a stream, such as a WebSocket? Then we could pretty much write the same query to iterate our data, with very little change.
/* Get stock data somehow */
const source = getAsyncStockData();
const subscription = source
.filter(quote => quote.price > 30)
.map(quote => quote.price)
.subscribe(
price => console.log(`Prices higher than $30: ${price}`),
err => console.log(`Something went wrong: ${err.message}`)
);
/* When we're done */
subscription.dispose();
The only difference is that we can handle the errors inline with our subscription. And when we're no longer interested in receiving the data as it comes streaming in, we call dispose on our subscription. Note the use of subscribe instead of forEach. We could also use forEach which is an alias for subscribe but we highly suggest you use subscribe.
Batteries Included
Sure, there are a lot of libraries to get started with RxJS. Confused on where to get started? Start out with the complete set of operators with rx.all.js, then you can reduce it to the number of operators that you really need, and perhaps stick with something as small as rx.lite.js. If you're an implementor of RxJS, then you can start out with rx.core.js.
This set of libraries include:
The complete library:
rx.all.js
Main Libraries:
rx.jsrx.aggregates.jsrx.async.jsrx.binding.jsrx.coincidence.jsrx.experimental.jsrx.joinpatterns.jsrx.testing.jsrx.time.jsrx.virtualtime.js
Lite Libraries:
rx.lite.jsrx.lite.extras.jsrx.lite.aggregates.jsrx.lite.async.jsrx.lite.coincidence.jsrx.lite.experimental.jsrx.lite.joinpatterns.jsrx.lite.testing.jsrx.lite.time.jsrx.lite.virtualtime.js
Core Libraries:
rx.core.jsrx.core.binding.jsrx.core.testing.js
Why RxJS?
One question you may ask yourself is why RxJS? What about Promises? Promises are good for solving asynchronous operations such as querying a service with an XMLHttpRequest, where the expected behavior is one value and then completion. Reactive Extensions for JavaScript unify both the world of Promises, callbacks as well as evented data such as DOM Input, Web Workers, and Web Sockets. Unifying these concepts enables rich composition.
To give you an idea about rich composition, we can create an autocompletion service which takes user input from a text input and then throttles queries to a service (to avoid flooding the service with calls for every key stroke).
First, we'll reference the JavaScript files, including jQuery, although RxJS has no dependencies on jQuery...
<script src="https://code.jquery.com/jquery.js"></script>
<script src="rx.lite.js"></script>
Next, we'll get the user input from an input, listening to the keyup event by using the Rx.Observable.fromEvent method. This will either use the event binding from jQuery, Zepto, AngularJS, Backbone.js and Ember.js if available, and if not, falls back to the native event binding. This gives you consistent ways of thinking of events depending on your framework, so there are no surprises.
const $input = $('#input');
const $results = $('#results');
/* Only get the value from each key up */
var keyups = Rx.Observable.fromEvent($input, 'keyup')
.pluck('target', 'value')
.filter(text => text.length > 2 );
/* Now debounce the input for 500ms */
var debounced = keyups
.debounce(500 /* ms */);
/* Now get only distinct values, so we eliminate the arrows and other control characters */
var distinct = debounced
.distinctUntilChanged();
Now, let's query Wikipedia! In RxJS, we can instantly bind to any Promises A+ implementation through the Rx.Observable.fromPromise method. Or, directly return it and RxJS will wrap it for you.
let searchWikipedia = (term) => {
return $.ajax({
url: 'https://en.wikipedia.org/w/api.php',
dataType: 'jsonp',
data: {
action: 'opensearch',
format: 'json',
search: term
}
}).promise();
}
Once that is created, we can tie together the distinct throttled input and query the service. In this case, we'll call flatMapLatest to get the value and ensure we're not introducing any out of order sequence calls.
const suggestions = distinct
.flatMapLatest(searchWikipedia);
Finally, we call the subscribe method on our observable sequence to start pulling data.
suggestions.subscribe(
data => {
$results
.empty()
.append($.map(data[1], value => $('<li>').text(value)));
},
error => {
$results
.empty()
.append($('<li>'))
.text(`Error: ${error}`);
});
And there you have it!
Dive In!
Please check out:
- Our Code of Conduct
- The full documentation
- Our many great examples
- Our design guidelines
- Our contribution guidelines
- Our complete Unit Tests
- Our recipes
Resources
-
Contact us
- Twitter @ReactiveX
- Gitter.im
- StackOverflow rxjs
-
Tutorials
- The introduction to Reactive Programming you've been missing
- 2 minute introduction to Rx
- Learn RxJS - @jhusain
- RxJS Koans
- RxJS Workshop from BuildStuff 2014
- Rx Workshop
- Reactive Programming and MVC
- RxJS lessons - egghead.io
- RxJS Training - @andrestaltz
-
Reference Material
- Rx Marbles
- RxJS GitBook
- Intro to Rx
- 101 Rx Samples Wiki
- RxJS Design Guidelines
- Visualizing Reactive Streams
- Your Mouse is a Database
-
Essential tools
- RxVision
- Percussion
-
Books
- RxJS in Action
- RxJS
- Intro to Rx
- Programming Reactive Extensions and LINQ
- Reactive Programming with RxJS
-
Community Examples
-
Presentations
-
Videos and Podcasts
Getting Started
There are a number of ways to get started with RxJS. The files are available on cdnjs and jsDelivr.
Download the Source
git clone https://github.com/Reactive-Extensions/rxjs.git
cd ./rxjs
Installing with NPM
```bash` $ npm install rx $ npm install -g rx
### Using with Node.js and Ringo.js
```js
var Rx = require('rx');
Installing with Bower
$ bower install rxjs
Installing with Jam
$ jam install rx
Installing All of RxJS via NuGet
$ Install-Package RxJS-All
Install individual packages via NuGet:
Install-Package RxJS-All
Install-Package RxJS-Lite
Install-Package RxJS-Main
Install-Package RxJS-Aggregates
Install-Package RxJS-Async
Install-Package RxJS-BackPressure
Install-Package RxJS-Binding
Install-Package RxJS-Coincidence
Install-Package RxJS-Experimental
Install-Package RxJS-JoinPatterns
Install-Package RxJS-Testing
Install-Package RxJS-Time
In a Browser:
<!-- Just the core RxJS -->
<script src="rx.js"></script>
<!-- Or all of RxJS minus testing -->
<script src="rx.all.js"></script>
<!-- Or keeping it lite -->
<script src="rx.lite.js"></script>
Along with a number of our extras for RxJS:
<script src="rx.aggregates.js"></script>
<script src="rx.async.js"></script>
<script src="rx.backpressure.js"></script>
<script src="rx.binding.js"></script>
<script src="rx.coincidencejs"></script>
<script src="rx.experimental.js"></script>
<script src="rx.joinpatterns.js"></script>
<script src="rx.time.js"></script>
<script src="rx.virtualtime.js"></script>
<script src="rx.testing.js"></script>
Using RxJS with an AMD loader such as Require.js
require({
'paths': {
'rx': 'path/to/rx-lite.js'
}
},
['rx'], (Rx) => {
const obs = Rx.Observable.of(42);
obs.forEach(x => console.log(x));
});
What about my libraries?
The Reactive Extensions for JavaScript have no external dependencies on any library, so they'll work well with just about any library. We provide bridges and support for various libraries including:
- Node.js
- React
- Rx-React
- RxReact
- cycle-react
- Flux
- Rx-Flux
- ReactiveFlux
- Thundercats.js
- Flurx
- RR
- Ember
- RxEmber
- AngularJS
- HTML DOM
- jQuery (1.4+)
- MooTools
- Dojo 1.7+
- ExtJS
Compatibility
RxJS has been thoroughly tested against all major browsers and supports IE6+, Chrome 4+, FireFox 1+, and Node.js v0.4+.
Contributing
There are lots of ways to contribute to the project, and we appreciate our contributors. If you wish to contribute, check out our style guide.
You can contribute by reviewing and sending feedback on code checkins, suggesting and trying out new features as they are implemented, submit bugs and help us verify fixes as they are checked in, as well as submit code fixes or code contributions of your own. Note that all code submissions will be rigorously reviewed and tested by the Rx Team, and only those that meet an extremely high bar for both quality and design/roadmap appropriateness will be merged into the source.
First-time contributors must sign a Contribution License Agreement. If your Pull Request has the label cla-required, this is an indication that you haven't yet signed such an agreement.
License
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. Microsoft Open Technologies would like to thank its contributors, a list of whom are at https://github.com/Reactive-Extensions/RxJS/wiki/Contributors.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Related repositories
Master programming by recreating your favorite technologies from scratch.
A curated meta-list of curated lists organized by technology domain. The repository acts as a directory pointing to hundreds of specialized awesome lists covering programming languages, platforms, frameworks, and tooling. All content is community-contributed under the CC0 public domain dedication.
Public APIs is a community-curated GitHub repository listing free, publicly accessible APIs across a wide range of categories, with auth type, HTTPS, and CORS noted for each entry. It's a browsable reference, not a library to install.
freeCodeCamp is a free, self-paced curriculum for learning to code, published as open source at freeCodeCamp/freeCodeCamp. It's a 501(c)(3) nonprofit funded by donor support, structured around six certifications in its Full-Stack Developer Curriculum, each gated by required projects instead of open-book quizzes. The repository also carries beta language certifications for developers, interview-prep resources, and the code that runs the live freecodecamp.org platform.
Quick answers
How many stars does Reactive-Extensions/RxJS have?
Reactive-Extensions/RxJS has 19.4k GitHub stars — refresh the page for the live number, or check github.com/Reactive-Extensions/RxJS. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
Is Reactive-Extensions/RxJS open source?
TopGit's metadata for Reactive-Extensions/RxJS does not record a license. Most public repositories on GitHub ARE open source, but the exact terms vary — verify by opening the LICENSE file directly.
What is Reactive-Extensions/RxJS?
Reactive-Extensions/RxJS (Reactive-Extensions/RxJS) is a JavaScript project on GitHub. From the project's own README: The Reactive Extensions for JavaScript
Where can I see Reactive-Extensions/RxJS in action?
The project maintains a homepage at http://reactivex.io. The README tab on this page also usually contains screenshots and a quickstart.
Where do I read more about Reactive-Extensions/RxJS?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/Reactive-Extensions/RxJS is the definitive source.
Read full README in the tab above.
Is RxJS worth your time?
ChatGPT, Claude and Perplexity can all read this page. Ask one of them what it makes of RxJS.