Is it possible to compile webassembly code in the executable?
What I mean by that is that you have an executable, which also serves some interface to javascript via webassembly.
Right now my project is separated into two, both written in Rust. One is the executable, which publishes all the information in Redis, that is being consumed by the wasm intermediary code into javascript to render it.
Is it possible to get rid of Redis altogether and just make an executable to have the wasm intermediary code?
Tried to find an information to this question, and so far only got the suggestion to transfer it to C, which then will be turned into executable.