rxjs-extra
v2.0.1
Published
Collection of extra RxJS 6 operators, Observable creation methods, Observers and Subjects for common use-cases.
Downloads
5
Maintainers
Readme
RxJS Extra
Collection of extra RxJS 6 operators, Observable creation methods, Observers and Subjects for common use-cases.
List of Features
Operators
cache
- Caches the source Observable values for a time period with three different caching strategies.delayComplete
- Just likedelay()
but delays only thecomplete
notification.errorWhen
- Emits anerror
notification when a value matches the predicate function.finalizeWithReason
- Just likefinalize()
but passes to its callback alsoreason
why the chain is being disposed.queueTime
- Mirrors the source Observable and makes at mosttimeDelay
delay between two emissions to keep at leasttimeDelay
intervals while re-emitting source asap.randomDelay
- Mirrors the source Observable but makes random delays between emissions on a specified scheduler.retryTime
- Just likeretry()
but resubscribes to its source Observable with constant delays or resubscribes onlyN
times based on a predefined array of delays.takeUntilComplete
- Just liketakeUntil()
but completes only when the notifier completes and ignores allnext
notifications.tapSubscribe
- Triggers callback every time a new observer subscribes to this chain.
Observable creation methods
presetTimer
- Creates an Observable that emits sequential numbers in predefined delays on a specified scheduler.randomTimer
- Creates an Observable that emits sequential numbers in random intervals on a specified scheduler.
Observers
DebugObserver
- Observer for debugging purposes that timestamps each notification with time offset since the instance was created.
Subjects
PersistentSubject
- Just likeBehaviorSubject
but stores every item in a persistent storage (LocalStorage
by default).
Usage
Install rxjs-extra
via npm
:
npm install rxjs-extra
The general usage is the same as with any RxJS 6 operators or Observable creation methods:
In TypeScript for example:
import { map } from 'rxjs/operators';
import { randomTimer } from 'rxjs-extra';
import { tapSubscribe } from 'rxjs-extra/operators';
randomTimer(100, 2000).pipe(
tapSubscribe(() => console.log('subscribed')),
map(i => String.fromCharCode(97 + i)),
).subscribe(console.log);
In node
environment for example:
const { map } = require('rxjs/operators');
const { randomTimer } = require('rxjs-extra');
const { tapSubscribe } = require('rxjs-extra/operators');
randomTimer(100, 2000).pipe(
tapSubscribe(() => console.log('subscribed')),
map(i => String.fromCharCode(97 + i)),
).subscribe(console.log);
Demos
All features from this package have their small demo examples written in TypeScript. You can use NPM demo
script with preconfigures ts-node
to run any one of them:
$ npm run demo -- demo/delayComplete.ts
Testing
This repository tests are based completely on RxJS marble tests and its helpers. You'll have to clone the original RxJS repo because tests in this repo rely on tools available only in the official RxJS 6 repo.
$ npm run clone_rxjs_repo
To run the test suit simply run the following npm
script:
$ npm run test
This repository also uses the same marble2png generator as the original RxJS repo. Since this isn't an officially exported feature of RxJS 6 the process is a little more complicated but fully automatic by running a single script:
$ npm run tests2png_full
The tests2png_full
script does the following things:
Clones
https://github.com/ReactiveX/rxjs.git
repo into.rxjs-repo
directory.Creates
./docs_app/content/img/
directory.Runs
mocha
tests withtests2png.opts
options.Copies content of
./docs_app/content/img/
to./doc
.Removes temp directories
.rxjs-repo
and./docs_app
.
If you know you're about to run the png generator a lot you can just clone the RxJS repo and re-run the test suit:
$ npm run clone_rxjs_repo
$ npm run tests2png