ramen :ramen:

Load WebAssembly like JavaScript

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

Quickly get access to functions for invoking JavaScript

Rust: ```rust let fnlog = ramen::registerfunction( "function(context,strPtr,strLen){ let str = context.getUtf8FromMemory(strPtr,strLen); console.log(str); }", );

let msg = "Hello World!";

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

C/C++: ```c JSFunction fnLog = jsregisterfunction( "function(context,strPtr,strLen){\ let str = context.getUtf8FromMemory(strPtr,strLen);\ console.log(str);\ }", );

char *msg = "Hello World!"; jsinvokefunction(fnLog, msg, 11); ```

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

Lot's of helpers!

In your JS function context is passed in to handle most chores for binding and give access to your program.