Tour of WebAssembly Table of Contents

Using a Module

A module will have one or more export functions that are accessible to JavaScript. Typically there is some export function to call in order to start a wasm program (e.g. main, start).

module.instance.main();
Mascot Ferris