hydrati / proton

[WIP] Simple Reactive Library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[WIP] Proton

Dead Simple Reactive Library.

Example

const [count, setCount] = useSignal(0)

useEffect(() => console.log(count()))
// prints 0

setCount(1)
// prints 1

About

[WIP] Simple Reactive Library

License:Mozilla Public License 2.0


Languages

Language:TypeScript 100.0%