This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The addModule()
method of the Worklet
interface loads the module in the given JavaScript file and adds it to the current Worklet
.
addPromise = worklet.addModule(moduleURL); addPromise = worklet.addModule(moduleURL, options);
moduleURL
String
containing the URL of a JavaScript file with the module to add.options
Optional
credentials
: A RequestCredentials
value that indicates whether to send credentials (e.g. cookies and HTTP authentification) when loading the module. Can be one of "omit"
, "same-origin"
, or "include"
. Defaults to "same-origin"
. See also Request.credentials
.A Promise
that resolves once the module from the given URL has been added. The promise doesn't return any value.
const audioCtx = new AudioContext(); const audioWorklet = audioCtx.audioWorklet; await audioWorklet.addModule('modules/bypassFilter.js', { credentials: 'omit', });
Specification | Status | Comment |
---|---|---|
Worklets Level 1 The definition of 'addModule()' in that specification. | Working Draft |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 65 | No | 63 | No | 52 | No |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 65 | 65 | No | 63 | 52 | No | Yes |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Worklet/addModule