Static
instantiateInstantiate a Ruby VM with the given WebAssembly Core module with WASI Preview 1 implementation.
The options to instantiate the Ruby VM
A promise that resolves to the Ruby VM instance and the WebAssembly instance
Static
instantiateInstantiate a Ruby VM with the given WebAssembly component with WASI Preview 2 implementation.
The options to instantiate the Ruby VM
A promise that resolves to the Ruby VM instance
// First, you need to transpile the Ruby component to a JavaScript module using jco.
// $ jco transpile --no-wasi-shim --instantiation --valid-lifting-optimization ./ruby.component.wasm -o ./component
// Then, you can instantiate the Ruby VM with the component:
import * as wasip2 from "@bytecodealliance/preview2-shim"
import fs from "fs/promises";
import path from "path";
const { instantiate } = await import("./component/ruby.component.js");
const getCoreModule = async (relativePath) => {
const buffer = await fs.readFile(path.join("./component", relativePath));
return WebAssembly.compile(buffer);
}
const { vm } = await RubyVM.instantiateComponent({
instantiate, getCoreModule, wasip2,
});
Runs a string of Ruby code from JavaScript
The Ruby code to run
the result of the last expression
Runs a string of Ruby code with top-level JS::Object#await
Returns a promise that resolves when execution completes.
The Ruby code to run
a promise that resolves to the result of the last expression
Create a new Ruby VM instance with low-level initialization control.
Initialize the Ruby VM with the given command line arguments
The command line arguments to pass to Ruby. Must be an array of strings starting with the Ruby program name.
Set a given instance to interact JavaScript and Ruby's WebAssembly instance. This method must be called before calling Ruby API.
The WebAssembly instance to interact with. Must be instantiated from a Ruby built with JS extension, and built with Reactor ABI instead of command line.
Add intrinsic import entries, which is necessary to interact JavaScript and Ruby's WebAssembly instance.
The import object to add to the WebAssembly instance
Print the Ruby version to stdout
Wrap a JavaScript value into a Ruby JS::Object
The value to convert to RbValue
the RbValue object representing the given JS value
A Ruby VM instance
See
RubyVM.instantiateComponent and RubyVM.instantiateModule to create a new instance