js-wasm

docs.rs docs

This project wants to be a simple, easy to learn, technology-agnostic way to call JavaScript from WebAssembly.

Use any WebAssembly programming language out of the box: * Rust * C/C++ * AssemblyScript

See a demo of it working!

How It Works

Load WebAssembly like JavaScript.

html <html> <head> <script src="https://cdn.jsdelivr.net/gh/richardanaya/js-wasm/js-wasm.js"></script> <script type="application/wasm" src="helloworld.wasm"></script> </head> <body> ... </body> </html>

Create JavaScript functions and invoke them

Rust: toml [dependencies] js = "0" ```rust let fnlog = js::registerfunction( "function(strPtr,strLen){ console.log(this.getUtf8FromMemory(strPtr,strLen)); }", );

let msg = "Hello World!";

fnlog.invoke2(msg.as_ptr() as u32, msg.len() as u32); ```

C/C++: ```c #include "js-wasm.h"

JSFunction fnLog = jsregisterfunction( "function(context,strPtr,strLen){\ console.log(thi.getUtf8FromMemory(strPtr,strLen));\ }", );

char *msg = "Hello World!";

jsinvokefunction_2(fnLog, msg, 11); ```

In your JS function context is passed in to handle most issues you'll encounter