Wasm 模块
🌐 Wasm modules
稳定性: 1 - 实验性
支持导入 WebAssembly 模块,允许将任何 .wasm 文件作为普通模块导入,同时也支持它们的模块导入。
🌐 Importing WebAssembly modules is supported allowing any .wasm files to be
imported as normal modules while also supporting their module imports.
此整合符合 WebAssembly 的 ES 模块集成提案。
🌐 This integration is in line with the ES Module Integration Proposal for WebAssembly.
例如,一个包含以下内容的 index.mjs:
🌐 For example, an index.mjs containing:
import * as M from './module.wasm';
console.log(M); 在以下条件下执行:
🌐 executed under:
node index.mjs 将为 module.wasm 的实例化提供导出接口。
🌐 would provide the exports interface for the instantiation of module.wasm.