{"id":51156943,"url":"https://github.com/vyfor/remy","last_synced_at":"2026-06-26T11:01:27.497Z","repository":{"id":365332750,"uuid":"1271601239","full_name":"vyfor/remy","owner":"vyfor","description":"🐀 Opinionated, reactive framework for Ratatui","archived":false,"fork":false,"pushed_at":"2026-06-16T22:07:38.000Z","size":79,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-16T23:21:40.750Z","etag":null,"topics":["cli","framework","interface","ratatui","reactive","remy","rust","terminal","tui","user"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vyfor.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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-06-16T20:38:10.000Z","updated_at":"2026-06-16T22:07:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/vyfor/remy","commit_stats":null,"previous_names":["vyfor/remy"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/vyfor/remy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vyfor%2Fremy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vyfor%2Fremy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vyfor%2Fremy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vyfor%2Fremy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vyfor","download_url":"https://codeload.github.com/vyfor/remy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vyfor%2Fremy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34813782,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-26T02:00:06.560Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cli","framework","interface","ratatui","reactive","remy","rust","terminal","tui","user"],"created_at":"2026-06-26T11:01:26.626Z","updated_at":"2026-06-26T11:01:27.490Z","avatar_url":"https://github.com/vyfor.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🐀 remy\n\nremy is an opinionated, reactive framework for **[ratatui](https://ratatui.rs)** -- a rust crate for cooking up terminal user interfaces. remy is a work in progress.\n\n## why the name\n\nthe name `ratatui` is a play on the movie **ratatouille**.\n\nin the movie, **remy** is the little rat who hides under chef linguini's hat, pulling his hair to manage the kitchen behind the scenes.\n\n`remy` works the same. it handles the state, you handle the interface.\n\n## features\n\n- async support\n- reactive state (effects, memos, resources, queries)\n- input handling (keys, chords, mouse)\n- focus\n- overlays\n- component caching\n\n## usage\n\n```toml\nremy-tui = \"0.1.0\"\n```\n\n## examples\n\n```rs\nuse remy::ratatui::buffer::Buffer;\nuse remy::ratatui::layout::Rect;\nuse remy::ratatui::prelude::Widget;\nuse remy::ratatui::widgets::{Block, Borders, Paragraph};\nuse remy::{Framework, Rcx, State, component, intent, quit, state, store};\n\n#[store]\npub fn counter() {\n    let count: State\u003ci32\u003e = state(0);\n}\n\n#[intent]\nfn increment() {\n    counter::count.update(|c| *c += 1);\n}\n\n#[intent]\nfn decrement() {\n    counter::count.update(|c| *c -= 1);\n}\n\n#[component]\nfn App(cx: remy::Cx) {\n    cx.keys()\n        .on_press('+', increment)\n        .on_press('-', decrement)\n        .on_press('q', quit);\n\n    move |_rcx: Rcx, buf: \u0026mut Buffer, area: Rect| {\n        let widget = Paragraph::new(format!(\"count: {}\", *counter::count))\n            .block(Block::new().title(\"counter\").borders(Borders::ALL));\n\n        widget.render(area, buf);\n    }\n}\n\n#[tokio::main]\nasync fn main() -\u003e std::io::Result\u003c()\u003e {\n    Framework::new().run(App).await\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvyfor%2Fremy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvyfor%2Fremy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvyfor%2Fremy/lists"}