2 مستودعات
Frameworks that synchronize browser interfaces between threads using proxies and shared memory.
Distinct from Web Worker Orchestrators: Focuses on the proxy-based synchronization framework, distinct from general worker orchestrators.
Explore 2 awesome GitHub repositories matching web development · Worker Proxy Frameworks. Refine with filters or upvote what's useful.
Partytown is a main thread performance optimizer and web worker script orchestrator. It functions as a third party script offloader that relocates resource-intensive external JavaScript from the browser's main thread into a sandboxed web worker environment. The project focuses on improving core web vitals and overall page responsiveness by reducing main thread blocking time. This isolation ensures that heavy third party scripts do not interfere with the execution of core application code and page loading speed. The system provides infrastructure for client-side script offloading through DOM
Redirects main thread function calls to a background worker using a synchronized proxy and message bus.
Partytown is a library designed to offload resource-intensive third-party scripts to background web workers. By executing these scripts outside of the main thread, it prevents them from blocking the critical rendering path, thereby maintaining a responsive user interface and improving overall page load performance. The project functions as a web worker proxy library that synchronizes browser interfaces between the main thread and background environments. It uses proxy-based access and synchronous messaging to replicate global objects like the window and document, allowing scripts to interact
Uses proxies and shared memory to synchronize browser interfaces between the main thread and background workers.