Has anyone done a ubiquitous web framework in Rust (or maybe actually Go) that is similar to Next.js in that it runs the same code (compiled to WebAssembly) on client and server?
1
If you find a good answer for Rust, I'd be interested. I've done some basic wasm UIs using Rust, and obviously done some purely server-side stuff; but never found anything which combined the two.
2
2
For the basic client-side stuff did you use Smithy or something else?
1
Replying to @frabcus
I was using yew, though the UIs I made were pretty simplistic. When I did just server-side stuff in Rust, I ended up doing a React frontend, though that was icky.

May 23, 2022 ยท 10:43 AM UTC

1
2
Replying to @dsilverstone
Sounds it! I'm exploring wether WebAsm, the newest official web language, will impact the whole ecosystem over the next ten years. I suspect it will, as humans like new, and there'll be stuff that runs better via languages other than Typescript.
1
I think wasm is already changing an awful lot of how the ecosystem works. Computation at least is now being offloaded to wasm in a lot of cases.
1
1