mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-21 04:52:11 +01:00
29 lines
630 B
JavaScript
29 lines
630 B
JavaScript
#!/usr/bin/env node
|
|
|
|
var filename = '{test.wasm}';
|
|
var ret = read(filename, "binary");
|
|
|
|
function instantiate(bytes, imports) {
|
|
return WebAssembly.compile(bytes).then(
|
|
m => new WebAssembly.Instance(m, imports), reason => console.log(reason) );
|
|
}
|
|
|
|
var dependencies = {
|
|
"global": {},
|
|
"env": {}
|
|
};
|
|
dependencies["global.Math"] = Math;
|
|
|
|
function callExport(instance) {
|
|
try{
|
|
console.log( instance.exports[scriptArgs[0]]( ...scriptArgs.slice(1) ) );
|
|
}catch(err){
|
|
console.log(err)
|
|
}
|
|
}
|
|
|
|
instantiate( ret, dependencies ).then(
|
|
instance => callExport(instance),
|
|
reason => console.log(reason)
|
|
);
|