/proton

[WIP] Simple Reactive Library

Primary LanguageTypeScriptMozilla Public License 2.0MPL-2.0

[WIP] Proton

Dead Simple Reactive Library.

Example

const [count, setCount] = useSignal(0)

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

setCount(1)
// prints 1