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.2" ```rust let fnlog = js::registerfunction( "function(strPtr,strLen){ console.log(this.readUtf8FromMemory(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,cstrPtr){\ console.log(thi.getCStringFromMemory(cstrPtr));\ }");

jsinvokefunction_2(fnLog, "Hello World!"); ```

In your JS function context this contains several functions handle most issues you'll encounter