A WebAssembly.Module()
constructor creates a new Module object containing stateless WebAssembly code that has already been compiled by the browser and can be efficiently shared with Workers, and instantiated multiple times.
The WebAssembly.Module()
constructor function can be called to synchronously compile given WebAssembly binary code. However, the primary way to get a Module
is through an asynchronous compilation function like WebAssembly.compile()
.
Important: Since compilation for large modules can be expensive, developers should only use the Module()
constructor when synchronous compilation is absolutely required; the asynchronous WebAssembly.compileStreaming()
method should be used at all other times.
new WebAssembly.Module(bufferSource);
var importObject = { imports: { imported_func: function(arg) { console.log(arg); } } }; function createWasmModule(bytes) { return new WebAssembly.Module(bytes); } fetch('simple.wasm').then(response => response.arrayBuffer() ).then(bytes => { let mod = createWasmModule(bytes); WebAssembly.instantiate(mod, importObject) .then(result => result.exports.exported_func() ); })
Specification |
---|
WebAssembly JavaScript Interface The definition of 'WebAssembly.Module()' in that specification. |
Desktop | ||||||
---|---|---|---|---|---|---|
Module() constructor |
57 | 16 | 52
|
No | 44 | 11 |
Mobile | ||||||
---|---|---|---|---|---|---|
Module() constructor |
57 | 57 | 52
|
43 | 11 | 7.0 |
Server | |
---|---|
Module() constructor |
8.0.0 |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://wiki.developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Module/Module