hello, I am looking to make a web app with a zig backend (jetzig, zap, ...) and have a zig frontend aswell, but since there is no SPA framework like it exists in other languages I am trying to find options here are some I found:
- using templating language and serve directly from backend the full html page
- TUI https://github.com/rockorager/libvaxis (i would have to use the std.http client)
- GUI Library https://github.com/capy-ui/capy (std.http client as well)
- Simply a CLI (std.http client)
- Or I thought about using WebAssembly, I know people made interfacesin C ... with WebAssembly but I have no idea how they did it and if it possible to do it in Zig, any idea ?
Obviously, I could do a simple html+js app or use react or whatever but I want it to be as much Zig as possible.
Note: I want my backend to serve HTTP