Profile
@midas
Supporter
Joined Nov 2025
1 public entry
I'm building an application framework in zig that takes in a custom hypermedia format (similar to html).
The first central idea is to keep it incredibly basic, the fundamental building block is user-defined handlers. These are native zig functions that can be called on an event from hypermedia.
Here's an example of the calling convention I came up with:
<!-- this button will call 'my_function' with a url argument and a count variable on click -->
<button onclick="my_function"
oncli
...
~ EOF ~
Join the conversation