0.0.6 • Published 15 days ago

@caracal7/reactor.js v0.0.6

Weekly downloads
1
License
MIT
Repository
github
Last release
15 days 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

15 days ago

0.0.5

4 years ago

0.0.4-a

5 years ago

0.0.3-a

5 years ago

0.0.2-a

5 years ago

0.0.1-a

5 years ago