Skip to content

hex13/nacht

Repository files navigation

Reactive framework for GUI (WIP)

Main idea is that you can embed reactive values into JSX and it will update automatically.

// reactive value
const count = State(0);
//...
<div>{count}</div>;

// in event handlers:

count.set(count.get() + 1);

Look into examples folder for more detailed example.

About

Reactive framework for GUI (WIP)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published