# wasi_unstable **Repository Path**: mirrors_guybedford/wasi_unstable ## Basic Information - **Project Name**: wasi_unstable - **Description**: WASI Unstable Experimental ES Module Integration - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-04-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 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 Note this API is only an experiment in integrating WASI with the ES Module system in Node.js and is not based on any existing proposal. ``` npm install wasi_unstable ``` main.mjs ```js 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 ```