Skip to content

Commit 63e12e7

Browse files
Docs: add .mjs example to WebAssembly usage section (#7147)
* docs: add .mjs example to WebAssembly usage section * chore: run prettier * chore: punctuation nit --------- Co-authored-by: Michael Esteban <[email protected]>
1 parent 90afad3 commit 63e12e7

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

apps/site/pages/en/learn/getting-started/nodejs-with-webassembly.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,36 @@ Once you have a WebAssembly module, you can use the Node.js `WebAssembly` object
4949
// Assume add.wasm file exists that contains a single function adding 2 provided arguments
5050
const fs = require('node:fs');
5151

52+
// Use the readFileSync function to read the contents of the "add.wasm" file
5253
const wasmBuffer = fs.readFileSync('/path/to/add.wasm');
54+
55+
// Use the WebAssembly.instantiate method to instantiate the WebAssembly module
5356
WebAssembly.instantiate(wasmBuffer).then(wasmModule => {
54-
// Exported function live under instance.exports
57+
// Exported function lives under instance.exports object
5558
const { add } = wasmModule.instance.exports;
5659
const sum = add(5, 6);
5760
console.log(sum); // Outputs: 11
5861
});
5962
```
6063

64+
```mjs
65+
// Assume add.wasm file exists that contains a single function adding 2 provided arguments
66+
import fs from 'node:fs/promises';
67+
68+
// Use readFile to read contents of the "add.wasm" file
69+
const wasmBuffer = await fs.readFile('path/to/add.wsm');
70+
71+
// Use the WebAssembly.instantiate method to instantiate the WebAssembly module
72+
const wasmModule = await WebAssembly.instantiate(wasmBuffer);
73+
74+
// Exported function lives under instance.exports object
75+
const { add } = wasmModule.instance.exports;
76+
77+
const sum = add(5, 6);
78+
79+
console.log(sum); // Outputs 11
80+
```
81+
6182
## Interacting with the OS
6283

6384
WebAssembly modules cannot directly access OS functionality on its own. A third-party tool [Wasmtime](https://docs.wasmtime.dev/) can be used to access this functionality. `Wasmtime` utilizes the [WASI](https://wasi.dev/) API to access the OS functionality.

0 commit comments

Comments
 (0)