Tour de WebAssembly Tabla de Contenidos

[Untranslated] Creating a Module

Modules are created from bytes.

let module = await WebAssembly.instantiate(bytes);

During this phase we can import JavaScript functions we want our module to have access to. We'll show an example of this next chapter.

Mascot Ferris