RxJS Core Module
The Reactive Extensions for JavaScript's core functionality is in the main RxJS file which has many core components including the Schedulers, Disposables, Observable and Observer.
This comes with both rx.js
which is for use in modern development environments such as > IE9 and server-side environments such as Node.js. We also have rx.compat.js
which has backwards compatibility to browsers which do not support all required ES5 features.
Details
Files:
NPM Packages:
NuGet Packages:
Included Observable Operators
Observable Methods
amb
catch | catchException
concat
create | createWithDisposable
defer
empty
from
fromArray
generate
just
merge
mergeDelayError
never
of
ofWithScheduler
onErrorResumeNext
range
repeat
return | returnValue
throw | throwError | throwException
zip
zipArray
Observable Instance Methods
amb
asObservable
bufferWithCount
catch | catchException
combineLatest
concat
concatMap
defaultIfEmpty
distinct
distinctUntilChanged
do | doAction
doOnNext
doOnError
doOnCompleted
filter
finally | finallyAction
flatMap
flatMapLatest
flatMapObserver
ignoreElements
map
merge
mergeObservable | mergeAll
observeOn
onErrorResumeNext
repeat
retry
retryWhen
scan
select
selectConcat
selectMany
selectManyObserver
selectSwitch
single
singleOrDefault
skip
skipLast
skipUntil
skipWhile
startWith
subscribe | forEach
subscribeOnNext
subscribeOnError
subscribeOnCompleted
subscribeOn
switch | switchLatest
take
takeLast
takeLastBuffer
takeUntil
takeWhile
toArray
transduce
where
windowWithCount
withLatestFrom
zip