We need DOM APIs in Workers

I need DOM APIs in Workers for different reasons than most people. Many people would like the DOM in Workers to make updating the DOM not block the main thread. I need it so I can efficiently parser and manipulate XML data and to output HTML, and I suspect many other people do.

In a recent project, I wanted to share as much logic as possible between the server, service worker and the client. The project is essentially a simple RSS feed reader, it takes RSS feeds, parses the data and merges them in to a nice set of columns (much like TweetDeck), and also a single merged list.

The project works with the RSS feed data in three places:

  1. On client — When the page loads for the very first time, it AJAX requests the RSS feed data from a proxy service that I run, and it then caches the raw data in the window.caches object for later use before rendering it in the client.
  2. In the service worker —
    1. When the main page loads and the service worker installed, the service worker loads the shell and merges in the RSS feed data so that no AJAX requests need to be made on 2nd load - thus keeping the Time to interactive time high.
    2. When a request to the proxy is made from the client, the service worker when installed, will intercept the request and serve the data from the window.caches. This allows the site to work offline.
  3. On the server — When the page is requested, we can take some of the data that is cached on the server and merge it directly into the response that we send to the client. By rendering some of the content directly from the server we can have a stable viewport on first load which is normally important for slower connections on mobile (and SpeedIndex).

In each instance there is a simple process that takes the RSS data and maps into a JSON object that I can then apply to a template to generate HTML. Keeping one template and unified logic across the client, server and service worker was a critical requirement. Maintaining one set of templates means that the input data has to be consistent across all places that will render data.

Because I run a proxy server, there is a simple solution: just transform all the RSS feeds into a consistent JSON form on the server. I discounted this because:

Processing the data on the client is possible (and desired in my case) because browsers have a little used API called DOMParser. DOMParser is as the name suggests: A parser of raw XML and HTML that builds a DOM. Once you have a DOM, you can do anything with it that you would do with normal DOMs (appendChild, getAttribute etc etc).

let parser = new DOMParser();
let dom = parser.parseFromString('<a><b>hello</b></a>', 'application/xml');
let bString = dom.querySelector('b').textContent;

Pretty simple stuff and I use this to convert the RSS data into a simple JSON structure so that I can pass it to a templating function (It is here if you are interested in seeing the code.)

This works perfectly in the client, but there is no DOM in web workers, service workers, nor any native DOM the server.

Luckily there is a npm library that works everywhere. xml-dom is a Level 2 compliant implementation of the W3C DOM with some Level 3 features, and it works pretty much as expected. It's not the end of the world, but it seems silly to have to import 64kb of JS, for something that the browser already has built in.

I only ever see the 'VDOM' use-case for DOM APIs in workers, and whilst I think it is an important use-case, I think it gets in the way of another important uses case: data manipulation off main thread. The fact that we can't use workers to process HTML and XML documents (something that nearly every app has to do) without having to import a huge chunk of polyfill that won't run at the same speed as a native implementation and that we rely on OSS contributors to maintain seems like something that should be fixed.

Thank you to the people who maintain xml-dom. Heroes work.

I lead the Chrome Developer Relations team at Google.

We want people to have the best experience possible on the web without having to install a native app or produce content in a walled garden.

Our team tries to make it easier for developers to build on the web by supporting every Chrome release, creating great content to support developers on web.dev, contributing to MDN, helping to improve browser compatibility, and some of the best developer tools like Lighthouse, Workbox, Squoosh to name just a few.

I love to learn about what you are building, and how I can help with Chrome or Web development in general, so if you want to chat with me directly, please feel free to book a consultation.

I'm trialing a newsletter, you can subscribe below (thank you!)