RSSAmplifier

Blog

loom – BLOG

Recent content in BLOG on loom

loomui.devRSS feed ↗1 posts

Latest posts

INTRODUCING LOOM

After four months in the making, I’m really excited to announce loom. The first signal-based component framework in Go, that can be used for the Web, the Terminal, and more. func Counter () Node { count, setCount := Signal ( 0 ) go func () { for { time. Sleep (time.Second / 30 ) setCount ( count () + 1 ) } }() return P ( Text ( 'Count: ' ), BindText (count)) } What is loom? Loom is a…