Ziex – A full-stack web framework for Zig
Next.js DX for Zig with 76k req/sec SSR benchmarks that crush Next.js.

13k req/sec SSR benchmarks crush Next.js, but web frameworks are a crowded category.
Zig developers, performance-focused backend engineers
Jetzig · Next.js · SolidStart
Ziex is a full-stack web framework for Zig. It now has most of the core pieces needed to build real applications and is preparing for its first public release (0.1.0), planned after Zig 0.17 stabilizes.
Some of the current features:
- Server-side rendering (fast by default)
- JSX-like UI syntax in Zig
- File-system routing
- Client components compiled to WebAssembly
- zx.db: built-in SQLite abstraction (uses D1 when deployed on - Cloudflare Workers)
- zx.kv: key-value storage abstraction (uses Cloudflare KV in production)
You can try Ziex without installing Zig using npm or bun:
`npm init ziex`
Example app built with it (Hacker News clone deployed to Cloudflare Workers):
Feedback is welcome!
Next.js DX for Zig with 76k req/sec SSR benchmarks that crush Next.js.
File-based routing and API routes, but Next.js and Astro already own this space.
React syntax in 7kb with SSR, but crowded against Preact, SolidJS, and Astro.
Runs real React components in the browser without eval() or transpilation steps.
WASM+SSR from one DSL source codegen is clever for Rust full-stack development.
SQL queries on CSV streams—instant, zero-setup alternative to awk and sqlite3 boilerplate.