IKhomZera

Results 3 comments of IKhomZera

@L-jasmine I want to run WebAssembly through C++, and execute some JavaScript inside WebAssembly. I see here https://github.com/second-state/wasmedge-quickjs/blob/main/examples/embed_js/src/main.rs how to use it through Rust app. What I want to understand...

@L-jasmine Here is what I'm trying currently to do: ``` #include #include #include #include #include using namespace std; int runJS() { /* Create the configure context and add the WASI...

@L-jasmine that does work quite well, thanks a lot for your support 🥇 Just one final thing My js file looks like the following: ``` import * as os from...