0.0.6 • Published 1 year ago

@caracal7/reactor.js v0.0.6

Weekly downloads
1
License
MIT
Repository
github
Last release
1 year ago

reactor.js

Lightweight ES6 javascript reactive programming library

Installation

npm i @caracal7/reactor.js

Usage

import Reactor from '@caracal7/reactor.js';

let dataflow = new Reactor();

dataflow.b = a => a + 1;
dataflow.c = b => b + 1;
dataflow.d = a => a + 1;
dataflow.e = (b, d) => b + d;

dataflow.log = e => console.warn(e);

dataflow.a = 5;

Library was created as fork of topologica, and provides similar functionality, but with using ES6 proxy sugar.

0.0.6

1 year ago

0.0.5

5 years ago

0.0.4-a

6 years ago

0.0.3-a

6 years ago

0.0.2-a

6 years ago

0.0.1-a

6 years ago