Tour de WebAssembly Tabla de Contenidos

Cargando un Módulo

Como un módulo de WebAssembly es apenas un conjunto de bytes, necesitamos primero cargar esos bytes en nuestro navegador.

let file = await fetch('mi_modulo.wasm');
let bytes = await file.arrayBuffer();
Mascot Ferris