Computing...
ComputeKit is a tiny toolkit that allows frontend developers to run heavy computations using WebAssembly + Web Workers with a simple async API.
import { compute } from '@computekit/core';
// Define function in ./compute/fib.as
const result = await compute.fibonacci(1000);
console.log(result); // UI never froze!
WebAssembly (WASM) runs at near-native speed. Combined with parallel processing via Workers, you can unlock performance previously impossible in the browser.