lightweight version of
Web Workers and gives developers access to low-level parts of the rendering pipelineWith Worklets, you can run JavaScript and WebAssembly code to do graphics rendering or audio processing
Worklet - Web APIs | MDN
The interface is a lightweight version of Web Workers and gives developers access to low-level parts of the rendering pipeline. With Worklets, you can run JavaScript and WebAssembly code to do graphics rendering or audio processing where high performance is required. Worklets are restricted to specific use cases; they cannot be used for arbitrary computations like Web Workers.
https://developer.mozilla.org/en-US/docs/Web/API/Worklet


Seonglae Cho