26 releases (8 breaking)
Uses new Rust 2024
| 0.9.0 | May 9, 2026 |
|---|---|
| 0.7.0 | Apr 2, 2026 |
| 0.6.0 | Mar 10, 2026 |
| 0.2.2 | Dec 6, 2025 |
| 0.1.6 | Jul 31, 2025 |
#1464 in Network programming
146 downloads per month
Used in 26 crates
80KB
1.5K
SLoC
Graphix is a statically-typed functional programming language that compiles to reactive dataflow graphs. Unlike React or Vue where reactivity is a library bolted onto the language, Graphix is reactive at the language level — every expression is a node in a live graph, and changes propagate through automatically.
It feels familiar to anyone who knows Haskell, OCaml, or F#: lexically scoped, expression-oriented, with algebraic data types, pattern matching, parametric polymorphism, and first-class functions. It's particularly well-suited for building UIs and working with streaming network data via netidx.
use tui;
use tui::block;
use tui::text;
let counter = count(time::timer(duration:1.s, true));
block(
#border: &`All,
#title: &line("My First TUI"),
#style: &style(#fg: `Green),
&text(&"Counter: [counter]")
)
Install
cargo install graphix-shell
Requires Rust and clang / libkrb5-dev (Debian/Ubuntu) or clang-devel /
krb5-devel (Fedora).
Learn More
graphix-lang.github.io/graphix
Documentation · Discord · GitHub
License
MIT
Dependencies
~36–69MB
~1M SLoC