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

Download history 19/week @ 2026-02-18 17/week @ 2026-02-25 25/week @ 2026-03-04 8/week @ 2026-03-11 26/week @ 2026-03-18 13/week @ 2026-03-25 39/week @ 2026-04-01 18/week @ 2026-04-08 60/week @ 2026-04-15 35/week @ 2026-04-22 40/week @ 2026-04-29 93/week @ 2026-05-06 36/week @ 2026-05-13 34/week @ 2026-05-20 32/week @ 2026-05-27 31/week @ 2026-06-03

146 downloads per month
Used in 26 crates

MIT license

80KB
1.5K SLoC

Graphix

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]")
)

tui

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