Skip to content

eekelof/revik

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Revik

Reactive JS Library

** experimental, wip **

Usage

import { rvar } from "revik";

export function App() {
    const n = rvar(0);
    setInterval(() => n.set(n.value + 1), 1000);

    return <div>{n}</div>;
}
document.body.append(<App />);

About

Reactive JS Library

Resources

License

Stars

Watchers

Forks