0.1.3 • Published 5 years ago

wasi_unstable v0.1.3

Weekly downloads
14
License
MIT
Repository
github
Last release
5 years ago

Experimental ESM Integration API for WASI

Wraps https://npmjs.org/package/wasi, created by @devsnek, in an ESM integration API.

Proposed ES Module Integration Usage

npm install wasi_unstable

main.mjs

import * as M from './wasi-file.wasm';
import { run } from 'wasi_unstable';

run(M, {
  // defaults:
  env: process.env,
  args: process.argv.slice(1)
});

Executed with:

node --experimental-modules --experimental-wasm-modules main.mjs
0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.1

5 years ago