Loading repository data…
Loading repository data…
ziex-dev / repository
Full-stack web framework for Zig. HTML syntax within Zig code, just like JSX but for Zig!
A full-stack web framework for Zig. Declarative UI components using familiar patterns, with full access to Zig's control flow.
Ziex combines the power and performance of Zig with the expressiveness and simplicity of declarative UI, enabling you to build fast, type-safe web applications.
Note: Most of the API and syntax are finalized and stable, and server-side rendering (SSR) features are production-ready, Ziex continues to evolve with ongoing improvements to client-side rendering and state management, see the roadmap. You can start using the documented features today, as they are stable and unlikely to change. Areas still under development are not yet documented and will be added as they mature. See versions for Zig and Ziex versions compatibility.
# macOS/Linux
curl -fsSL https://ziex.dev/install | bash
# Windows
powershell -c "irm ziex.dev/install.ps1 | iex"
zx init
# or
npm init ziex
You will need compatible Zig version when using zx CLI or you can use the Node template from npm init ziex
Read Getting Started → for more details.
pub fn Playground(allocator: zx.Allocator) zx.Component {
const is_loading = true;
var i: usize = 0;
return (
<main @allocator={allocator}>
<h1>Hello, Ziex!</h1>
{for (users) |user| (
<Profile name={user.name} age={user.age} role={user.role} />
)}
{if (is_loading) (<p>Loading...</p>) else (<p>Loaded</p>)}
{while (i < 5) : (i += 1) (<i>{i}</i>)}
</main>
);
}
fn Profile(ctx: *zx.ComponentCtx(User)) zx.Component {
return (
<div @allocator={ctx.allocator}>
<h3>{ctx.props.name}</h3>
<div>{ctx.props.age}</div>
<strong>
{switch (ctx.props.role) {
.admin => "Admin",
.member => "Member",
}}
</strong>
</div>
);
}
const User = struct { name: []const u8, age: u32, role: enum { admin, member } };
const users = [_]User{
.{ .name = "John", .age = 20, .role = .admin },
.{ .name = "Jane", .age = 21, .role = .member },
};
const zx = @import("zx");
Try this in Playground →
// A Zig function that returns a `zx.Component`.
pub fn Playground(allocator: zx.Allocator) zx.Component {
const is_loading = true;
var i: usize = 0;
// HTML Block is always surrounded by parentheses and can contain HTML elements and control flow statements.
return (
// @allocator or any other attribute starting with `@` is called builtin attribute
// `@allocator` is used to specify the allocator for the component and its children for mem allocation.
<main @allocator={allocator}>
<h1>Hello, Ziex!</h1>
// `for` loop to iterate over `users` array and render a `Profile` component for each user.
// Since this is an expression the HTMLs are inside parenteses not curly braces.
{for (users) |user| (
// `Profile` component is called with props: name, age, and role.
// Optional props can be omitted, and the component will receive default values for them.
<Profile name={user.name} age={user.age} role={user.role} />
)}
// `if` statement works just like other control flow statements.
{if (is_loading) (<p>Loading...</p>) else (<p>Loaded</p>)}
// `while` loop with an optional increment statement.
{while (i < 5) : (i += 1) (<i>{i}</i>)}
</main>
);
}
// A Ziex Component is a Zig function that returns a `zx.Component`.
// It can have signatures like:
// - `pub fn ComponentName(allocator: zx.Allocator) zx.Component`
// - `pub fn ComponentName(ctx: *zx.ComponentCtx<PropsType>) zx.Component`
// - `pub fn ComponentName(allocator: zx.Allocator, props: PropsType) zx.Component`
fn Profile(ctx: *zx.ComponentCtx(User)) zx.Component {
return (
<div @allocator={ctx.allocator}>
// Exrepssion starts with `{` and ends with `}`. You can use it to access props, call functions, any valid Zig expression
<h3>{ctx.props.name}</h3>
<div>{ctx.props.age}</div>
<strong>
{switch (ctx.props.role) {
.admin => "Admin",
.member => "Member",
}}
</strong>
</div>
);
}
const User = struct { name: []const u8, age: u32, role: enum { admin, member } };
const users = [_]User{
.{ .name = "John", .age = 20, .role = .admin },
.{ .name = "Jane", .age = 21, .role = .member },
};
const zx = @import("zx");
| Zig | Ziex | Branch | Status |
|---|---|---|---|
0.17.x | main | Development | |
0.16.x | 0.1.0-dev.1259 | zig-0.16 | Latest |
0.15.x | 0.1.0-dev-1050 | zig-0.15 | Outdated |
Ziex 0.1.0 is planned for release after Zig 0.17.0 is available. You can view the roadmap to learn more.
The 0.1.0 release will indicate that Ziex is production-ready, with all major features fully implemented, and will receive patch releases for bug fixes.
The 1.0.0 release will signify long-term support for that major version, receiving bug fixes and minor updates.
Contributions are welcome! Currently trying out Ziex and reporting issues for edge cases and providing feedback are greatly appreciated.