This project is part of the @thi.ng/umbrella monorepo.
Adapter bridge between async CSP channels and synchronous stream subscriptions/transformations of @thi.ng/rstream.
STABLE - used in production
- @thi.ng/csp - ES6 promise based CSP primitives & operations
- @thi.ng/rstream - Reactive streams & subscription primitives for constructing dataflow graphs / pipelines
yarn add @thi.ng/rstream-csp
// ES module
<script type="module" src="https://unpkg.com/@thi.ng/rstream-csp?module" crossorigin></script>
// UMD
<script src="https://unpkg.com/@thi.ng/rstream-csp/lib/index.umd.js" crossorigin></script>
Package sizes (gzipped, pre-treeshake): ESM: 247 bytes / CJS: 302 bytes / UMD: 418 bytes
import * as rs from "@thi.ng/rstream";
import * as tx from "@thi.ng/transducers";
import { fromChannel } from "@thi.ng/rstream-csp";
import { Channel } from "@thi.ng/csp";
ch = new Channel();
stream = fromChannel(ch);
stream.subscribe(rs.trace("all"));
stream.subscribe(rs.trace("only evens"), tx.filter(tx.even));
ch.write(1);
// all 1
ch.write(2);
// all 2
// only evens 2
stream.subscribe(rs.trace("tentimes"), tx.map(x => x * 10));
// all 3
// tentimes 30
Karsten Schmidt
© 2018 - 2020 Karsten Schmidt // Apache Software License 2.0