@thi.ng/csp bridge module for @thi.ng/rstream
npm install @thi.ng/rstream-csp
!npm downloads

> [!NOTE]
> This is one of 214 standalone projects, maintained as part
> of the @thi.ng/umbrella monorepo
> and anti-framework.
>
> 🚀 Please help me to work full-time on these projects by sponsoring me on
> GitHub. Thank you! ❤️
- About
- Status
- Related packages
- Installation
- Dependencies
- API
- Authors
- License
Adapter bridge between async CSP
channels
and synchronous stream subscriptions/transformations of
@thi.ng/rstream.
STABLE - used in production
Search or submit any issues for this package
- @thi.ng/csp - Primitives & operators for Communicating Sequential Processes based on async/await and async iterables
- @thi.ng/rstream - Reactive streams & subscription primitives for constructing dataflow graphs / pipelines
``bash`
yarn add @thi.ng/rstream-csp
ESM import:
`ts`
import * as rscsp from "@thi.ng/rstream-csp";
Browser ESM import:
`html`
For Node.js REPL:
`js`
const rscsp = await import("@thi.ng/rstream-csp");
Package sizes (brotli'd, pre-treeshake): ESM: 235 bytes
- @thi.ng/csp
- @thi.ng/rstream
`ts
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
`
If this project contributes to an academic publication, please cite it as:
`bibtex``
@misc{thing-rstream-csp,
title = "@thi.ng/rstream-csp",
author = "Karsten Schmidt",
note = "https://thi.ng/rstream-csp",
year = 2018
}
© 2018 - 2026 Karsten Schmidt // Apache License 2.0