UNPKG

@wapython/wasi

Version:

Javascript library for interacting with WASI Modules in Node.js and the Browser.

9 lines (8 loc) 224 B
#!/usr/bin/env node const { run } = require("../dist/runtime"); if (process.argv.length <= 2) { throw Error("must provide path to .wasm code"); } process.argv = process.argv.slice(2); let [name] = process.argv; run(name);