Comment on QuickJS Running in WebAssemblyComments−jensneuse3yIs this also possible with Go as the host instead of TypeScript?−vijaybritto3yYes but not this exact module. You can use wasmtime-go to run wasm modules in go programs. You just need to compile quickjs to wasm−paulgb3yI’m not sure if anyone has done so yet for Go, but Shopify has done this for Rust.https://github.com/Shopify/javy/tree/main/crates/quickjs-was...
Comments
Is this also possible with Go as the host instead of TypeScript?
Yes but not this exact module. You can use wasmtime-go to run wasm modules in go programs. You just need to compile quickjs to wasm
I’m not sure if anyone has done so yet for Go, but Shopify has done this for Rust.
https://github.com/Shopify/javy/tree/main/crates/quickjs-was...