0.4.5 • Published 7 months ago

sky-reactivity v0.4.5

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

sky-reactivity

a reactivity system to automatically update the view when the state changes.

import { signal } from "sky-reactivity";
var box = signal(1);
box.get();
box.set(2);
import { signal, computed } from "sky-reactivity";
var box = signal(1);
var com = computed(() => box.get() * 2);
computed.get()
import { signal, batch } from "sky-reactivity";
var box = signal(1);
batch(() => {
	box.set(2);
	box.set(3);
});
0.4.5

7 months ago

0.4.4

7 months ago

0.4.1

10 months ago

0.4.0

11 months ago

0.3.0

1 year ago

0.2.2

1 year ago

0.2.1

1 year ago

0.1.0

1 year ago

0.0.0

1 year ago