A Comparison of Web Workers

Rate this content
Bookmark

Modern browsers come equipped with three types of Web Workers: Dedicated, Shared, and Service Workers. While each one offers the ability to execute JavaScript in a separate thread, their differing APIs and capabilities mean that any given task usually has an ideal worker. Learn the benefits of each worker and how to choose the right one.

This talk has been presented at Node Congress 2022, check out the latest edition of this Tech Conference.

FAQ

The speaker of this talk is Thomas Hunter.

The content of this talk is adapted from the book 'Multithreaded JavaScript' by Thomas Hunter.

The three types of web workers discussed in this talk are dedicated workers, shared workers, and service workers.

JavaScript and its ecosystem are inherently single-threaded.

The feature that allows for higher performance and multi-threading in JavaScript is shared memory, which can be used with web workers.

A JavaScript environment is an isolated collection of variables and globals, where objects and their prototype chains are different across environments.

A dedicated worker is the simplest type of web worker. It has exactly one parent and can execute on a separate thread.

A shared worker can have multiple parents and is useful for communicating across different windows on the same origin.

A service worker is the most complex type of web worker. It can intercept and proxy requests made to a server from a webpage and can operate with zero parents.

A dedicated worker is useful for offloading CPU-intensive tasks to a separate thread, preventing the main thread from slowing down or causing scroll jank.

A shared worker is useful for communicating across different pages or windows on the same origin, and for keeping a context with variables that outlive the life of a page.

A service worker is useful for caching network assets for offline use, performing background synchronization, supporting push notifications, and building progressive web apps (PWAs).

Thomas Hunter II
Thomas Hunter II
25 min
18 Feb, 2022

Comments

Sign in or register to post your comment.

Video Summary and Transcription

This Talk compares web workers, including dedicated workers, shared workers, and service workers. Web workers provide multithreading capabilities and use shared memory for higher performance. Dedicated workers have one parent and can execute on a separate thread. Shared workers can have multiple parents and are useful for communication across different windows. Service workers can intercept and proxy requests made from a web page and are useful for caching network assets and building progressive web apps.

1. Introduction to Web Workers

Short description:

Hi, I'm Thomas Hunter and this talk is a comparison of web workers. Today we're going to talk about dedicated workers, shared workers, and service workers. JavaScript is single threaded, but web workers provide multithreading capabilities. Web workers use shared memory for higher performance and multithreading. Each JavaScript environment is isolated, with its own variables and globals. Web workers cannot access the DOM, but shared memory can be used for data access.

Hi, I'm Thomas Hunter and this talk is a comparison of web workers. The content from this talk is adapted from a book I recently published, Multithreaded JavaScript. If you'd like more about the book, feel free to follow that bitly URL at the bottom of the screen.

All right. So today we're going to talk about three separate topics. The first one is dedicated workers. The second is shared workers. And the third is service workers. Each one of these workers is a type of web worker.

But first, I'm actually going to talk about some basics. So, first, the concept of multithreading JavaScript. One thing to keep in mind is that it is the nature of JavaScript and its ecosystem to be single threaded. So for the longest time, there really existed no true multithreading capabilities in JavaScript. You can sort of pull some of this off by using basic message passing, using iframes. But it wasn't exactly the cleanest solution. However, now we have web workers available to us. And with that comes a feature called shared memory, which allows for higher performance and multi threading than just using message passing. This presentation is going to be from the perspective of using these web workers from a multi threading purpose since it is sort of related to the book.

All right. So another basic concept is, well, what is a JavaScript environment? Well, a JavaScript environment is an isolated collection of variables, globals, things like, you know, capital O object are going to be different in these separate environments, the prototype chains, you know, what those objects end up pointing to are different in these different environments. Each one each additional environment is going to incur some overhead to spin up and so with Node it's easier to measure. In my experiments it was about each new work of thread instance consumes about six megabytes of memory. In a browser you're going to get some more overhead. Web workers will incur some additional memory overhead and then if you have additional pages there's even more overhead as there's different documents and rectangles that need to be rendered.

So, these object instances that are created in these different environments, they can never truly be shared across environment. However, you can serialize these objects, you can sort of clone them, or you can represent them as JSON and then pass them around between the separate environments. However, if you mutate one in one place, you're not mutating it in the other. None of the web workers that we're going to look at today have access to the DOM. So, for example, the document object global is not available within the web workers. Using the shared array buffer, if you pass one of those between these different environments, a pointer to this the same binary data in memory will end up getting shared and that's how we can perform shared memory data access.

2. Dedicated Workers

Short description:

A dedicated worker is the simplest type of web worker. It has one parent and can load other dedicated workers. Each worker provides a new JavaScript environment and can execute on a separate thread. To work with a dedicated worker, we instantiate a worker instance, attach a message handler, and pass messages using postMessage. The worker.js file handles messages received from the parent and can perform CPU-heavy calculations before sending a message back.

And a lot of this explanation is short of hand waving over some complexities under hood with relation to context and realms and really how the JavaScript VM works.

All right. So, now let's take a look at dedicated workers. What is a dedicated worker? Well, a dedicated worker is the simplest of the web workers that we're going to look at. Each one of these dedicated workers can have exactly one parent. You can actually end up loading them as a hierarchy if you want where dedicated workers can load other dedicated workers as well. And each one of these workers gives us a new JavaScript environment. Each one is also able to execute on a separate thread.

So, now, let's look at a code sample. This is how we would work with a dedicated worker from the context of the web page. So, maybe this sits in, like, an index.html file. Maybe it sits inside main.js loaded by an HTML file. But at any rate, this runs within the main thread that draws the window. And so, modern browsers give us a capital W, worker global. We're able to instantiate that to create an instance of a worker. The argument to this is the path to a file we want to use is the worker. Once we get the worker, we can attach a message handler on it. Here I'm assigning this dot on message handler, which is a callback function. When this function gets called, it's going to print the message from worker and then print the data that was passed into it. This code will get called within the parent thread when the dedicated worker thread has passed a message to it. And then conversely, if we want to pass a message into the worker, we call worker.postmessage where we pass in an argument. I'm passing in a string, but we could pass other simple values as well or basic objects with a few caveats. And then finally, at the end of the file, we're just logging that the end of the main.js file has run.

So now let's look at the dedicated worker inside the worker. So this is our worker.js file that was referenced in the previous slide. So in this file, the first thing we do is we just log that we're inside the worker. And then we assign a global on message handler, which accepts the message that was passed in from the parent. And so within this handler, we'd log a message that we received a message from main, we log the data that was passed into us. At this point in time within an application, this might be a good place to perform a heavy CPU, CPU heavy calculation. And then finally, we can call the postMessageGlobal to post a message back to the parent.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

Scaling Up with Remix and Micro Frontends
Remix Conf Europe 2022Remix Conf Europe 2022
23 min
Scaling Up with Remix and Micro Frontends
Top Content
This talk discusses the usage of Microfrontends in Remix and introduces the Tiny Frontend library. Kazoo, a used car buying platform, follows a domain-driven design approach and encountered issues with granular slicing. Tiny Frontend aims to solve the slicing problem and promotes type safety and compatibility of shared dependencies. The speaker demonstrates how Tiny Frontend works with server-side rendering and how Remix can consume and update components without redeploying the app. The talk also explores the usage of micro frontends and the future support for Webpack Module Federation in Remix.
Full Stack Components
Remix Conf Europe 2022Remix Conf Europe 2022
37 min
Full Stack Components
Top Content
RemixConf EU discussed full stack components and their benefits, such as marrying the backend and UI in the same file. The talk demonstrated the implementation of a combo box with search functionality using Remix and the Downshift library. It also highlighted the ease of creating resource routes in Remix and the importance of code organization and maintainability in full stack components. The speaker expressed gratitude towards the audience and discussed the future of Remix, including its acquisition by Shopify and the potential for collaboration with Hydrogen.
Debugging JS
React Summit 2023React Summit 2023
24 min
Debugging JS
Top Content
Watch video: Debugging JS
Debugging JavaScript is a crucial skill that is often overlooked in the industry. It is important to understand the problem, reproduce the issue, and identify the root cause. Having a variety of debugging tools and techniques, such as console methods and graphical debuggers, is beneficial. Replay is a time-traveling debugger for JavaScript that allows users to record and inspect bugs. It works with Redux, plain React, and even minified code with the help of source maps.
Making JavaScript on WebAssembly Fast
JSNation Live 2021JSNation Live 2021
29 min
Making JavaScript on WebAssembly Fast
Top Content
WebAssembly enables optimizing JavaScript performance for different environments by deploying the JavaScript engine as a portable WebAssembly module. By making JavaScript on WebAssembly fast, instances can be created for each request, reducing latency and security risks. Initialization and runtime phases can be improved with tools like Wiser and snapshotting, resulting in faster startup times. Optimizing JavaScript performance in WebAssembly can be achieved through techniques like ahead-of-time compilation and inline caching. WebAssembly usage is growing outside the web, offering benefits like isolation and portability. Build sizes and snapshotting in WebAssembly depend on the application, and more information can be found on the Mozilla Hacks website and Bike Reliance site.
It's a Jungle Out There: What's Really Going on Inside Your Node_Modules Folder
Node Congress 2022Node Congress 2022
26 min
It's a Jungle Out There: What's Really Going on Inside Your Node_Modules Folder
Top Content
The talk discusses the importance of supply chain security in the open source ecosystem, highlighting the risks of relying on open source code without proper code review. It explores the trend of supply chain attacks and the need for a new approach to detect and block malicious dependencies. The talk also introduces Socket, a tool that assesses the security of packages and provides automation and analysis to protect against malware and supply chain attacks. It emphasizes the need to prioritize security in software development and offers insights into potential solutions such as realms and Deno's command line flags.
Webpack in 5 Years?
JSNation 2022JSNation 2022
26 min
Webpack in 5 Years?
Top Content
In the last 10 years, Webpack has shaped the way we develop web applications by introducing code splitting, co-locating style sheets and assets with JavaScript modules, and enabling bundling for server-side processing. Webpack's flexibility and large plugin system have also contributed to innovation in the ecosystem. The initial configuration for Webpack can be overwhelming, but it is necessary due to the complexity of modern web applications. In larger scale applications, there are performance problems in Webpack due to issues with garbage collection, leveraging multiple CPUs, and architectural limitations. Fixing problems in Webpack has trade-offs, but a rewrite could optimize architecture and fix performance issues.

Workshops on related topic

Master JavaScript Patterns
JSNation 2024JSNation 2024
145 min
Master JavaScript Patterns
Featured Workshop
Adrian Hajdin
Adrian Hajdin
During this workshop, participants will review the essential JavaScript patterns that every developer should know. Through hands-on exercises, real-world examples, and interactive discussions, attendees will deepen their understanding of best practices for organizing code, solving common challenges, and designing scalable architectures. By the end of the workshop, participants will gain newfound confidence in their ability to write high-quality JavaScript code that stands the test of time.
Points Covered:
1. Introduction to JavaScript Patterns2. Foundational Patterns3. Object Creation Patterns4. Behavioral Patterns5. Architectural Patterns6. Hands-On Exercises and Case Studies
How It Will Help Developers:
- Gain a deep understanding of JavaScript patterns and their applications in real-world scenarios- Learn best practices for organizing code, solving common challenges, and designing scalable architectures- Enhance problem-solving skills and code readability- Improve collaboration and communication within development teams- Accelerate career growth and opportunities for advancement in the software industry
Integrating LangChain with JavaScript for Web Developers
React Summit 2024React Summit 2024
92 min
Integrating LangChain with JavaScript for Web Developers
Featured Workshop
Vivek Nayyar
Vivek Nayyar
Dive into the world of AI with our interactive workshop designed specifically for web developers. "Hands-On AI: Integrating LangChain with JavaScript for Web Developers" offers a unique opportunity to bridge the gap between AI and web development. Despite the prominence of Python in AI development, the vast potential of JavaScript remains largely untapped. This workshop aims to change that.Throughout this hands-on session, participants will learn how to leverage LangChain—a tool designed to make large language models more accessible and useful—to build dynamic AI agents directly within JavaScript environments. This approach opens up new possibilities for enhancing web applications with intelligent features, from automated customer support to content generation and beyond.We'll start with the basics of LangChain and AI models, ensuring a solid foundation even for those new to AI. From there, we'll dive into practical exercises that demonstrate how to integrate these technologies into real-world JavaScript projects. Participants will work through examples, facing and overcoming the challenges of making AI work seamlessly on the web.This workshop is more than just a learning experience; it's a chance to be at the forefront of an emerging field. By the end, attendees will not only have gained valuable skills but also created AI-enhanced features they can take back to their projects or workplaces.Whether you're a seasoned web developer curious about AI or looking to expand your skillset into new and exciting areas, "Hands-On AI: Integrating LangChain with JavaScript for Web Developers" is your gateway to the future of web development. Join us to unlock the potential of AI in your web projects, making them smarter, more interactive, and more engaging for users.
Using CodeMirror to Build a JavaScript Editor with Linting and AutoComplete
React Day Berlin 2022React Day Berlin 2022
86 min
Using CodeMirror to Build a JavaScript Editor with Linting and AutoComplete
Top Content
WorkshopFree
Hussien Khayoon
Kahvi Patel
2 authors
Using a library might seem easy at first glance, but how do you choose the right library? How do you upgrade an existing one? And how do you wade through the documentation to find what you want?
In this workshop, we’ll discuss all these finer points while going through a general example of building a code editor using CodeMirror in React. All while sharing some of the nuances our team learned about using this library and some problems we encountered.
Node.js Masterclass
Node Congress 2023Node Congress 2023
109 min
Node.js Masterclass
Top Content
Workshop
Matteo Collina
Matteo Collina
Have you ever struggled with designing and structuring your Node.js applications? Building applications that are well organised, testable and extendable is not always easy. It can often turn out to be a lot more complicated than you expect it to be. In this live event Matteo will show you how he builds Node.js applications from scratch. You’ll learn how he approaches application design, and the philosophies that he applies to create modular, maintainable and effective applications.

Level: intermediate
Testing Web Applications Using Cypress
TestJS Summit - January, 2021TestJS Summit - January, 2021
173 min
Testing Web Applications Using Cypress
WorkshopFree
Gleb Bahmutov
Gleb Bahmutov
This workshop will teach you the basics of writing useful end-to-end tests using Cypress Test Runner.
We will cover writing tests, covering every application feature, structuring tests, intercepting network requests, and setting up the backend data.
Anyone who knows JavaScript programming language and has NPM installed would be able to follow along.
Build and Deploy a Backend With Fastify & Platformatic
JSNation 2023JSNation 2023
104 min
Build and Deploy a Backend With Fastify & Platformatic
WorkshopFree
Matteo Collina
Matteo Collina
Platformatic allows you to rapidly develop GraphQL and REST APIs with minimal effort. The best part is that it also allows you to unleash the full potential of Node.js and Fastify whenever you need to. You can fully customise a Platformatic application by writing your own additional features and plugins. In the workshop, we’ll cover both our Open Source modules and our Cloud offering:- Platformatic OSS (open-source software) — Tools and libraries for rapidly building robust applications with Node.js (https://oss.platformatic.dev/).- Platformatic Cloud (currently in beta) — Our hosting platform that includes features such as preview apps, built-in metrics and integration with your Git flow (https://platformatic.dev/). 
In this workshop you'll learn how to develop APIs with Fastify and deploy them to the Platformatic Cloud.