1 Repo
Tools that load and initialize JavaScript modules specifically within a Web Worker context.
Distinct from JavaScript Worker Threads: Focuses on the loading and initialization of modules into workers, rather than the general threading model.
Explore 1 awesome GitHub repository matching software engineering & architecture · Worker Module Loaders. Refine with filters or upvote what's useful.
Workerize is a web worker module loader and main thread offloader. It functions as an asynchronous proxy wrapper that allows JavaScript modules to run in background workers, preventing browser UI freezes by delegating computationally expensive tasks to separate threads. The project utilizes a proxy-based interface to call functions inside a background worker as if they were local asynchronous calls. This mechanism enables the execution of modules in parallel workers to maintain main thread responsiveness. The system covers asynchronous module execution and web worker integration, focusing on
Loads and runs JavaScript modules in Web Workers to move heavy logic off the main thread.