Convert Most.js observables to RxJS and vice-versa
npm install most-rxWith 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);
`
```
npm install --save most-rx
For usage examples see tests.