@reactive-js/core

0.128.0 • Public • Published

Reactive JS:

Fast modern reactive Javascript programming library.

NPM Version License Coverage Status Build Status

Platform Support

ReactiveJS is an isomorphic library which supports all modern ecmascript platforms including Node.js (v16 and up), Deno, and modern browsers.

Installing

NPM JS

Reactive JS can be added to your npm based project using the @reactive-js/core packages.

yarn add @reactive-js/core

ES6 Modules

Both Ecmascript and Typescript modules that may be directly imported into your project are available in the mod directory of this repo. These modules are all Deno compatible. We recommend referencing specifically tagged releases of these files in your projects.

Example Usage

import * as Observable from "@reactive-js/core/concurrent/Observable";
import { incrementBy, pipe, returns } from "@reactive-js/core/functions";
import * as HostScheduler from "@reactive-js/core/concurrent/HostScheduler";

using scheduler = HostScheduler.create();

await pipe(
  Observable.generate(incrementBy(1), returns(0), {
    delay: 1,
    delayStart: true,
  }),
  Observable.throttle(2000),
  Observable.map(x => `${x}`),
  Observable.forEach(x => console.log(x)),
  Observable.takeUntil(Observable.empty({ delay: 20000 })),
  Observable.lastAsync(scheduler),
);

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.128.0
    5
    • latest

Version History

Package Sidebar

Install

npm i @reactive-js/core

Weekly Downloads

11

Version

0.128.0

License

MIT

Unpacked Size

667 kB

Total Files

567

Last publish

Collaborators

  • bordoley