Web Workers API - Web APIs | MDN
Web Workers makes it possible to run a script operation in a background thread separate from the main execution thread of a web application. The advantage of this is that laborious processing can be performed in a separate thread, allowing the main (usually the UI) thread to run without being blocked/slowed down.
Web Workers API - Web APIs | MDN Skip to main content Skip to search Web Workers API Web Workers makes it possible to run a script operation in a background thread separate from the main execution thread of a web application. The advantage of this is that laborious processing can be performed in a separate thread, allowing the main (usually the UI) thread to run without being blocked/slowed down. Concepts and usage A worker is an object created using a constructor (e.g., Worker() ) that runs a named JavaScript file — this file contains the code that will run in the worker thread. In addition t
related reading
- Web Workers, comlink, TypeScript and React | johnnyreillyjohnnyreilly.com
- Service Worker API - Web APIs | MDNdeveloper.mozilla.org
- Reading 18: Message-Passing and Networkingweb.mit.edu
- Service worker overview | Workbox | Chrome for Developersdeveloper.chrome.com
- rsmsrsms.me
- Reading 14: Concurrencyweb.mit.edu
- To Thread or Not to Thread: An In-Depth Look at Ruby’s Execution Models - Shopifyshopify.engineering
- 500 Lines or LessWeb Spreadsheetaosabook.org
- JavaScript execution model - JavaScript | MDNdeveloper.mozilla.org
- Context (ctx) · Cloudflare Workers docsdevelopers.cloudflare.com
- Threading Model · React Nativereactnative.dev
- STRML: Chrome 56 Will Aggressively Throttle Background Tabsblog.strml.net