files/en-us/webassembly/reference/javascript_interface/compile_static/index.md
The WebAssembly.compile() static method compiles WebAssembly binary code into a WebAssembly.Module object.
This function is useful if it is necessary to compile a module before it can be instantiated (otherwise, the WebAssembly.instantiate() function should be used).
[!NOTE] Webpages that have strict Content Security Policy (CSP) might block WebAssembly from compiling and executing modules. For more information on allowing WebAssembly compilation and execution, see the script-src CSP.
WebAssembly.compile(bufferSource)
WebAssembly.compile(bufferSource, compileOptions)
bufferSource
compileOptions {{optional_inline}}
builtins {{optional_inline}}
"js-string", which enables JavaScript string builtins.importedStringConstants {{optional_inline}}
A Promise that resolves to a WebAssembly.Module object
representing the compiled module.
bufferSource is not a typed array or {{jsxref("ArrayBuffer")}},
the promise rejects with a {{jsxref("TypeError")}}.WebAssembly.CompileError.The following example compiles the loaded simple.wasm byte code using the
compile() function and then sends it to a worker using postMessage().
const worker = new Worker("wasm_worker.js");
fetch("simple.wasm")
.then((response) => response.arrayBuffer())
.then((bytes) => WebAssembly.compile(bytes))
.then((mod) => worker.postMessage(mod));
[!NOTE] You'll probably want to use
WebAssembly.compileStreaming()in most cases, as it is more efficient thancompile().
This example enables JavaScript string builtins and imported global string constants when compiling the Wasm module with compile(), before instantiating it with instantiate() then running the exported main() function (which logs "hello world!" to the console). See it running live.
const importObject = {
// Regular import
m: {
log: console.log,
},
};
const compileOptions = {
builtins: ["js-string"], // Enable JavaScript string builtins
importedStringConstants: "string_constants", // Enable imported global string constants
};
fetch("log-concat.wasm")
.then((response) => response.arrayBuffer())
.then((bytes) => WebAssembly.compile(bytes, compileOptions))
.then((module) => WebAssembly.instantiate(module, importObject))
.then((instance) => instance.exports.main());
{{Specifications}}
{{Compat}}