most-rx
v1.2.1
Published
Convert Most.js observables to RxJS and vice-versa
Downloads
9
Maintainers
Readme
Most-RX
You may not need this package anymore
With latest versions of RxJS and Most you can just
import Rx from 'rxjs/Rx';
import { from } from 'most';
const RxObservable = Rx.Observable.from(SomeMostObservable);
const MostObservable = from(SomeRxObservable);
Installation
npm install --save most-rx
Usage
For usage examples see tests.