most-observable

0.0.2 • Public • Published

most-observable

Create @most/core streams from ES observables.

Install

yarn add most-observable
npm i -s most-observable

Example

Creating state stream from redux store as it is an Observable but any ES observable should work.

import fromObservable from "most-observable";
import { runEffects, tap } from "@most/core";
import { newDefaultScheduler } from "@most/scheduler";

const store = createStore(reducer); // Redux store

const state$ = fromObservable(store);

runEffects(tap(console.log, state$), newDefaultScheduler());

API

  • fromObservable
const stream = fromObservable(observable);

Readme

Keywords

none

Package Sidebar

Install

npm i most-observable

Weekly Downloads

1

Version

0.0.2

License

MIT

Unpacked Size

211 kB

Total Files

7

Last publish

Collaborators

  • kanitsharma