The Reactive Extensions for JavaScript is a set of libraries to compose asynchronous, resilient and responsive event driven programs using observable collections with ECMA Script5 Array#extras style composition in JavaScript.
Questions tagged [reactive-extensions-js]
121 questions
4
votes
3 answers
Reactive-Extensions / RxJS Implementatation to node.js
I simply want to implement
https://github.com/Reactive-Extensions/RxJS
to my node project.
Surely, there is the npm-package available, but I see it less updated, less modules, and uses only min. files, so I want to use rxjs from git sources.
I…
user1028880
4
votes
2 answers
How to use Reactive Extensions to cache, throttle, and relay multiple events?
I am trying to learn the new Reactive Extensions framework for .Net, and it sounds like the perfect solution for my application. After studying examples ( and being fairly weak with LINQ still ), I am struggling to figure out how to leverage the RX…

user1689175
- 767
- 10
- 18
3
votes
1 answer
What's the relationship between Reactive-Extension and ReactiveX
What's the difference/relationship between those two github groups:
Reactive-Extensions (https://github.com/Reactive-Extensions)
ReactiveX (https://github.com/ReactiveX)

Yishu Fang
- 9,448
- 21
- 65
- 102
3
votes
2 answers
RxJS 5 task queue, continue if a task fails
Imagine that we have an HTML page that fires AJAX requests. We want to make sure that AJAX requests are executed in order. The next AJAX request won't be fired until the previous one completes or errors.
I have tried to model this via a task queue…

Artur Ciocanu
- 335
- 1
- 3
- 9
3
votes
2 answers
RxJs: New value only after a period of time has passed
I am new to ReactiveExtensions and I do not get to work s.th. that I think should be a very common usecase. I want to receive a new value only after a specific period of time has passed without a new next value. In the bottom example this period of…

Ramon Rambo
- 145
- 2
- 8
3
votes
2 answers
Trigger custom event in Rx JS
I'm trying to understand Reactive JS. In JQuery I can trigger custom events as
$(document).bind('eventbus', function(e, d) { console.log(d);});
$(document).trigger('eventbus', 'test');
and pass around data (i.e. 'test'). It's not clear how to do…

Tristan
- 6,776
- 5
- 40
- 63
3
votes
1 answer
Unable to create Rx.Observable from JS event
I'm trying to figure out how to use rx.js with a dog-simple example, but can't figure out what reference or file I'm missing that means it isn't working.
Empty