https://github.com/hiegz/fuizon
TUI library for Zig (coming soon)
https://github.com/hiegz/fuizon
terminal tui zig
Last synced: 4 days ago
JSON representation
TUI library for Zig (coming soon)
- Host: GitHub
- URL: https://github.com/hiegz/fuizon
- Owner: hiegz
- License: mit
- Created: 2025-01-26T09:14:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-05-03T00:36:37.000Z (about 2 months ago)
- Last Synced: 2026-05-19T11:41:41.658Z (about 1 month ago)
- Topics: terminal, tui, zig
- Language: Zig
- Homepage:
- Size: 383 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Fuizon
A cross-platform TUI library for Zig
## Requirements
- Zig 0.14.0
- Rust/Cargo
## Installation
1. Fetch:
```sh
zig fetch --save https://github.com/byut/fuizon/archive/.tar.gz
```
2. Link to your executable or module:
```zig
const fuizon = b.dependency("fuizon", .{ .target = target, .optimize = optimize });
exe.root_module.addImport("fuizon", fuizon.module("fuizon"));
```
3. Import:
```zig
const fuizon = @import("fuizon");
```
## What you can build
https://github.com/user-attachments/assets/e1e4189d-2b1c-481f-a519-0430aa619ace
Discover more examples [here](https://github.com/byut/fuizon/tree/main/examples)