mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
8be2bbf074
Support for Wasm modules. Note this implements the standard where the default export is the instance (not the module). The module will come later with source phase imports. ```ts import { add } from "./math.wasm"; console.log(add(1, 2)); ```
7 lines
299 B
TypeScript
7 lines
299 B
TypeScript
fetch("http://localhost:4545/wasm/math.wasm").then(async (response) => {
|
|
if (!response.ok) {
|
|
throw new Error(`Failed to fetch WASM module: ${response.statusText}`);
|
|
}
|
|
using file = Deno.openSync("math.wasm", { write: true, create: true });
|
|
await response.body!.pipeTo(file.writable);
|
|
});
|