@nimiq/core
Version:
Nimiq's Rust-to-WASM web client
16 lines (12 loc) • 595 B
JavaScript
// The worker has its own scope and no direct access to functions/objects of the
// global scope. We import the generated JS file to make `wasm_bindgen`
// available which we need to initialize our WASM code.
import { parentPort } from 'node:worker_threads';
import Comlink from 'comlink';
import nodeEndpoint from 'comlink/dist/esm/node-adapter.mjs';
import { CryptoUtils } from './crypto-wasm/index.js';
(async function init() {
console.log('Initializing crypto WASM worker');
Comlink.expose(CryptoUtils, nodeEndpoint(parentPort));
parentPort.postMessage('NIMIQ_ONLOAD');
})();