π | .travis.yml |
π | LICENSE |
π | README.md |
π | index.js |
π | package-lock.json |
π | package.json |
π | tests |
README.md
SYNOPSIS
This implements a wasm container for the ewasm-kernel
INSTALL
npm install primea-wasm-container
USAGE
const WasmContainer = require('primea-wasm-container')
// this class with get instantiated when a new wasm container instance is created
// its methods with be exposed to the wasm binary as `imports`
class HelloWorld {
test () {
console.log('hello world!')
}
}
// regester the container with the a hypervisor instance
hypervisor.registerContainer(WasmContainer, {
env: HelloWorld
})
LICENSE
Built with git-ssb-web