{"id":47410298,"url":"https://github.com/loom-go/loom","last_synced_at":"2026-04-07T11:04:47.286Z","repository":{"id":343372932,"uuid":"1177290061","full_name":"loom-go/loom","owner":"loom-go","description":"The reactive framework for Go.","archived":false,"fork":false,"pushed_at":"2026-03-18T13:17:14.000Z","size":93,"stargazers_count":58,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-18T13:21:19.301Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://loomui.dev","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/loom-go.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-09T22:14:30.000Z","updated_at":"2026-03-18T13:17:18.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/loom-go/loom","commit_stats":null,"previous_names":["loom-go/loom"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/loom-go/loom","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loom-go%2Floom","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loom-go%2Floom/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loom-go%2Floom/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loom-go%2Floom/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/loom-go","download_url":"https://codeload.github.com/loom-go/loom/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/loom-go%2Floom/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31102536,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-28T13:41:34.766Z","status":"ssl_error","status_checked_at":"2026-03-28T13:41:05.465Z","response_time":79,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-03-20T23:00:38.114Z","updated_at":"2026-03-28T14:00:51.343Z","avatar_url":"https://github.com/loom-go.png","language":"Go","readme":"\u003ch1 align=\"center\"\u003e「#」\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003eA reactive component framework for TUIs, the Web, and more.\u003c/p\u003e\n\n```go\nfunc Counter() Node {\n\tcount, setCount := Signal(0)\n\n\tgo func() {\n\t\tfor {\n\t\t\ttime.Sleep(time.Second / 30)\n\t\t\tsetCount(count() + 1)\n\t\t}\n\t}()\n\n\treturn P(Text(\"Count: \"), BindText(count))\n}\n```\n\n## Features\n\n- **Pure Go** | No extra compiler.\n- **Multi-plateform** | Built-in support for TUIs and SPAs.\n- **Signal-based** | Concurrency-safe [reactive model](https://github.com/loom-go/loom/tree/main/signals/README.md) with signals, effects, memos, etc.\n- **Components** | Define your UI as declarative JSX-like components.\n\n## Quick-start\n\n```bash\ngo mod init my-project\ngo get github.com/loom-go/loom github.com/loom-go/term\n```\n\n```go\npackage main\n\nimport (\n\t\"log\"\n\t\"time\"\n\n\t\"github.com/loom-go/loom\"\n\t. \"github.com/loom-go/loom/components\"\n\t\"github.com/loom-go/term\"\n\t. \"github.com/loom-go/term/components\"\n)\n\nfunc Counter() loom.Node {\n\tframe, setFrame := Signal(0)\n\n\tgo func() {\n\t\tfor {\n\t\t\ttime.Sleep(time.Second / 120)\n\t\t\tsetFrame(frame() + 1)\n\t\t}\n\t}()\n\n\treturn Box(Text(\"Count: \"), BindText(frame))\n}\n\nfunc main() {\n\tapp := term.NewApp()\n\n\tfor err := range app.Run(term.RenderInline, Counter) {\n\t\tapp.Close()\n\t\tlog.Fatalf(\"Error: %v\\n\", err)\n\t}\n}\n```\n\n```bash\ngo run .\n```\n\nAnd it's live!\n\n## Documentation\n\nYou can visite [loom's website](https://loomui.dev) for the full documentation.\n\n## License\n\n[MIT](./LICENSE)\n\n---\n\n[![Go Reference](https://pkg.go.dev/badge/github.com/loom-go/loom.svg)](https://pkg.go.dev/github.com/loom-go/loom)\n[![Go Report Card](https://goreportcard.com/badge/github.com/loom-go/loom)](https://goreportcard.com/report/github.com/loom-go/loom)\n[![Codecov](https://codecov.io/gh/loom-go/loom/graph/badge.svg?token=16KVY029LZ)](https://codecov.io/gh/loom-go/loom)\n","funding_links":[],"categories":["Command Line","Build Automation"],"sub_categories":["Advanced Console UIs"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floom-go%2Floom","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Floom-go%2Floom","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Floom-go%2Floom/lists"}