Skip to content

A tiny library for Reactive programming in Deno.

Notifications You must be signed in to change notification settings

Regan-Koopmans/trx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TRX

Reactive programming primitives written in TypeScript for Deno.

Usage

Here is a short example of stream processing using trx.

import {Stream} from "https://raw.githubusercontent.com/Regan-Koopmans/trx/master/mod.ts";

let result =
    Stream.of("Amy", "Bob", "Charles")
        .map(name => name.toUpperCase())
        .filter(name => name.includes("A"))
        .blockingGet();

console.log(result); // [ "AMY", "CHARLES" ]

About

A tiny library for Reactive programming in Deno.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages