Skip to content

caracal7/reactor.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published