Skip to content

Instantly share code, notes, and snippets.

@JessicaWachtel
Created February 20, 2026 21:27
Show Gist options
  • Select an option

  • Save JessicaWachtel/8bd3eb1ceb8af25d076c08cf54b9e3d8 to your computer and use it in GitHub Desktop.

Select an option

Save JessicaWachtel/8bd3eb1ceb8af25d076c08cf54b9e3d8 to your computer and use it in GitHub Desktop.
const { instance } = await WebAssembly.instantiateStreaming(
  fetch('build/module.wasm')
);
console.log(instance.exports.add(5, 10)); // 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment