Michael Yuan
Michael Yuan
Do you mean to pause and resume Wasm execution from outside of the VM (ie in the host program that embeds the VM)? Checkout what Wasm-opt has done for JS...
I think perhaps we can do the "easy" thing first? That is to implement a single threaded scheduler for async operations. It is completely self-contained inside WasmEdge without any interaction...
What is the disadvantage of "constantly polling"? Is it performance? Is it how the non-blocking I/O in WasmEdge socket api currently works? I think perhaps a long term solution is...
Yeah. We prefer to keep everything inside the Wasm VM (without help from the host). That is a simpler model for app developers to understand (less magic and generated code)....
Do you mean to create a single binary app that contains WasmEdge and an Wasm app that runs inside it? You can use the host SDK to do that. Golang,...
Perhaps you can create a demo on how to compile a C host + embedded JS app + embedded WasmEdge into a single ape binary. :)
Thank you. This is a great suggestion. We will apply to join WinterCG for sure!
I think txiki.js is a great reference but probably difficult for us to use directly -- because it does not have the constraints of the Wasm sandbox. For example, it...
Hi @abhinandanudupa Ideally, we should support components. For a Percy example, check out this: https://github.com/second-state/percy-ssr-example https://wasmedge.org/book/en/dev/rust/ssr.html SSR requires the developer to start a server. It is actix by default. We...
Hi @abhinandanudupa My apologies for the delay. I am not very familiar with YEW SSR, but your understanding sounds correct. Do you have a working example of YEW running SSR...