Loom: A component framework for Go.

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 { c...

By · · 1 min read
Loom: A component framework for Go.

Source: DEV Community

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 component framework. It's similar to modern versions of SolidJS or SvelteJS, but in Go and with a few twists: 1) Markup is just Go functions. Markup is not written in HTML, using templating, or in a separate JSX-like syntax that would require extra tooling. Instead, it's just plain Go. A component is simply a function that returns a loom.Node, optionally taking children as arguments. func MyComponent(children ...loom.Node) loom.Node { // ... } Since markup is just Go functions, it can be used and written however it fits you best to construct a complete UI. For instance creating a Card() component with a title and a body: fu

Related Posts

Similar Topics

#ai (16769)#machine learning (14680)#programming (4007)#hands on tutorials (1874)#open source (1687)#security (725)#coding (592)#webdev (260)#supply chain security (245)#javascript (232)#codeql (106)#retrieval augmented (84)#react (65)#json (36)#apple m3 (7)#aws cli (7)#setup guide (7)#wen_yang (7)#developer skills (570)#performance (103)

Trending on ShareHub

  1. The System Design Primer
    by Sarah Kim · Feb 12, 2026 · 0 likes
  2. Just shipped my first open-source project!
    by Alex Chen · Feb 12, 2026 · 0 likes
  3. OpenAI Blog
    by Sarah Kim · Feb 12, 2026 · 0 likes
  4. Building Accessible Web Applications: A Practical Guide
    by Alex Chen · Feb 12, 2026 · 0 likes
  5. Rapper Lil Poppa dead at 25, days after releasing new music
    Rapper Lil Poppa dead at 25, days after releasing new music
    by Anonymous User · Feb 19, 2026 · 0 likes
  6. write-for-us
    by Volt Raven · Mar 7, 2026 · 0 likes
  7. Before the Coffee Gets Cold: Heartfelt Story of Time Travel and Second Chances
    Before the Coffee Gets Cold: Heartfelt Story of Time Travel and Second Chances
    by Anonymous User · Feb 12, 2026 · 0 likes
    #coffee gets cold #the #time travel
  8. Best DoorDash Promo Code Reddit Finds for Top Discounts
    Best DoorDash Promo Code Reddit Finds for Top Discounts
    by Anonymous User · Feb 12, 2026 · 0 likes
    #doordash #promo #reddit
  9. Premium SEO Services That Boost Rankings & Revenue | VirtualSEO.Expert
    by Anonymous User · Feb 12, 2026 · 0 likes
  10. NBC under fire for commentary about Team USA women's hockey team
    NBC under fire for commentary about Team USA women's hockey team
    by Anonymous User · Feb 18, 2026 · 0 likes
  11. Where to Watch The Nanny: Streaming and Online Viewing Options
    Where to Watch The Nanny: Streaming and Online Viewing Options
    by Anonymous User · Feb 12, 2026 · 0 likes
    #streaming #the nanny #where
  12. How Much Is Kindle Unlimited? Subscription Cost and Plan Details
    How Much Is Kindle Unlimited? Subscription Cost and Plan Details
    by Anonymous User · Feb 12, 2026 · 0 likes
    #kindle unlimited #subscription #unlimited
  13. Russian skater facing backlash for comment about Amber Glenn
    Russian skater facing backlash for comment about Amber Glenn
    by Anonymous User · Feb 18, 2026 · 0 likes
  14. Google News
    Google News
    by Anonymous User · Feb 18, 2026 · 0 likes
  15. Understanding Modern JavaScript Frameworks in 2026
    by Alex Chen · Feb 12, 2026 · 0 likes

Latest on ShareHub

Browse Topics

#artificial intelligence (31556)#data science (24017)#ai (16760)#generative ai (15034)#crypto (14988)#machine learning (14680)#bitcoin (14230)#featured (13553)#news & insights (13064)#crypto news (11082)

Around the Network