wasm-bindgen/examples/wasm-audio-worklet/index.html

17 lines
366 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Wasm audio worklet</title>
</head>
<body>
<script type="module">
import init, {web_main} from "./pkg/wasm_audio_worklet.js";
async function run() {
await init();
web_main();
}
run();
</script>
</body>
</html>