Web Workers
Web Workers is a browser API that lets JavaScript run scripts on a background thread separate from the page's main thread, allowing computationally expensive work to run without blocking user interface rendering or input handling.
11 resources across 2 libraries
Glossary Terms(9)
Fresh (framework)
Fresh is a full-stack web framework for the Deno runtime that renders pages on the server by default and ships JavaScript to the browser only for interactive '…
Nuxt 4
Nuxt 4 is a major version of Nuxt, a full-stack meta-framework for Vue.js that provides file-based routing, server-side rendering, and a unified data-fetching…
Turbo (Hotwire)
Turbo is the core library of Hotwire, a suite of tools from Basecamp/37signals that lets server-rendered web applications feel like single-page apps by sending…
Stimulus.js
Stimulus is a lightweight JavaScript framework that attaches reusable 'controllers' to existing server-rendered HTML using data attributes, designed to add sma…
Web Animations API
The Web Animations API (WAAPI) is a native browser JavaScript interface, most commonly accessed via `Element.animate()`, that lets developers create, control,…
WebAssembly System Interface
The WebAssembly System Interface (WASI) is a standardized API that gives WebAssembly modules portable, capability-based access to system resources like files,…
WASI
WASI is the acronym for the WebAssembly System Interface, a capability-based standard API that gives WebAssembly modules portable access to system resources li…
Web Workers
Web Workers is a browser API that lets JavaScript run scripts on a background thread separate from the page's main thread, allowing computationally expensive w…
Progressive Web App Manifest
The Web App Manifest is a JSON file linked from a web page that describes a Progressive Web App's name, icons, colors, and display behavior, enabling browsers…
Interview Questions(2)
What Are Web Workers and When Should You Use Them?
A Web Worker is a JavaScript thread that runs in the background, separate from the main UI thread, letting you run CPU-intensive work like parsing large data o…
Shared Workers vs Web Workers: What Is the Difference?
A dedicated Web Worker is a background thread owned by a single browser tab or script, while a SharedWorker is a single background thread that multiple tabs, i…