https://github.com/jaycefayne/ratatui-reactive
A minimalistic framework for building TUI applications using fine-grained reactivity.
https://github.com/jaycefayne/ratatui-reactive
async cli ratatui reactive reactive-programming rust terminal terminal-user-interface tui
Last synced: about 2 months ago
JSON representation
A minimalistic framework for building TUI applications using fine-grained reactivity.
- Host: GitHub
- URL: https://github.com/jaycefayne/ratatui-reactive
- Owner: JayceFayne
- License: mit
- Created: 2026-04-23T10:02:54.000Z (about 2 months ago)
- Default Branch: master
- Last Pushed: 2026-04-26T21:39:24.000Z (about 2 months ago)
- Last Synced: 2026-04-27T18:37:09.475Z (about 2 months ago)
- Topics: async, cli, ratatui, reactive, reactive-programming, rust, terminal, terminal-user-interface, tui
- Language: Rust
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ratatui-reactive [![Action Badge]][actions] [![Version Badge]][crates.io] [![License Badge]][license] [![Docs Badge]][docs]
[Version Badge]: https://img.shields.io/crates/v/ratatui-reactive.svg
[crates.io]: https://crates.io/crates/ratatui-reactive
[Action Badge]: https://github.com/JayceFayne/ratatui-reactive/workflows/Rust/badge.svg
[actions]: https://github.com/JayceFayne/ratatui-reactive/actions
[License Badge]: https://img.shields.io/crates/l/ratatui-reactive.svg
[license]: https://github.com/JayceFayne/ratatui-reactive/blob/master/LICENSE.md
[Docs Badge]: https://docs.rs/ratatui-reactive/badge.svg
[docs]: https://docs.rs/ratatui-reactive
A minimalistic framework for building TUI applications using fine-grained reactivity.
## Usage
Examples of how to use the library can be found [here](./examples).
## Why?
I built this library around my personal preference for creating UIs with reactive systems. [ratatui-reactive](https://github.com/jaycefayne/ratatui-reactive) is designed around a reactive graph, rather than the message-driven architectures (like Elm) commonly used in many Rust UI libraries.
## Contributing
If you find any errors in ratatui-reactive or just want to add a new feature feel free to [submit a PR](https://github.com/jaycefayne/ratatui-reactive/pulls).
## Credits
- [The Ratatui Developers](https://github.com/orgs/ratatui/people) for their very simple and flexible [ratatui](https://github.com/ratatui/ratatui) library for cooking up terminal user interfaces.
- [The Sycamore Developers](https://github.com/orgs/sycamore-rs/people) for their elegant implementation of [reactive primitives](https://github.com/sycamore-rs/sycamore/tree/main/packages/sycamore-reactive).