1 Repo
Executing JavaScript modules in parallel background workers to avoid blocking the main execution thread.
Distinct from Asynchronous Module Loading: Focuses on parallel execution within workers rather than just the asynchronous loading of the modules.
Explore 1 awesome GitHub repository matching web development · Parallel Worker Execution. 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
Runs JavaScript modules in parallel workers using proxies to handle background execution without blocking the UI.