Skip to content

sergeycher/recell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reactive Cell library

Very simple low-level reactive programming library based on excel-like cells

import {recell} from "./recell";

const a = recell(0);
const b = recell(0);
// watch a and b explicitly
const ab = recell(0).compute(() => a.value + b.value).watch(a, b);

a.next(12);
b.next(8);

console.log(ab.value); // 20

About

Reactive Cells lib

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published