Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
September 23, 2021 03:59 pm GMT

Introducing Partytown : Run Third-Party Scripts From a Web Worker

A fun location for your third-party scripts to hang out

Performance is always top of mind for any website or web app. Its of no surprise that a page that loads instantly, has no scroll jank, and responds immediately to any interaction, will provide an all around better user-experience.

Even with a fast and highly tuned site following all of the best practices, it's all too common for your performance wins to be erased the moment third-party scripts are added. By third-party scripts we mean code that is embedded within your site, but not directly under your control. A few examples include: analytics, ad pixels, A/B testing, trackers, etc.

When it comes to improving site performance, resources often explain and document tangible improvements with what you can do to your code, but for the most part our hands are tied when it comes to improving third-party code.

Third-Party Script Performance Issues

The elephant in the room is that third-party scripts are often to blame for eating up a large chunk of the main threads precious resources. Theres a few tricks to reduce their upfront damaging effects, like waiting until after the page load to run these scripts.

But regardless, theyre still running hundreds of kilobytes (and commonly, even a few megabytes) of Javascript on your users main thread! And end-users mobile devices have less resources than the machines developers are building the sites on! This can drastically affect Lighthouse scores, Core Web Vitals, search rankings, and even increase bounce rates and reduce user-engagement due to poor user experience.

All of this has surfaced as weve been building out Qwik for Builder.io. The tldr is that we can make interactive sites load immediately with only HTML and CSS, and only pull in the Javascript you need on-demand. But either way, even with the fastest of the fastest frameworks (or no framework at all), third-party scripts continue to drain site performance. So we got to thinking...

Running Third-Party Scripts Within a Web Worker

Partytown's philosophy is that the main thread should be dedicated to your code, and any scripts that are not required to be in the critical path should be relocated to a web worker. Into a sandboxed location, kinda like...a little town for third-party scripts. Some sort of a...Partytown, if you will

Web workers have been a practical solution that can off-load resource intensive tasks off of the main thread for many years now. The challenge, however, is that workers do not have direct access to main thread APIs, such as window, document, or localStorage. A messaging system can be created between the two worlds, but because postMessage is asynchronous, DOM operations that third-party scripts are packed full of simply wont succeed with a traditional messaging system.

For example, heres a snippet of code found in Google Tag Manager:

var w = document.body.clientWidth;

Theres nothing special about this code, actually its pretty darn common. But, notice how it has to be synchronous, and theres three blocking getters:

  1. Get document
  2. Get body
  3. Get clientWidth

If were unable to refactor this code to use promises or callbacks instead, then an asynchronous messaging system wouldnt allow this to just work. And I want to emphasize, unable to refactor this code.

The same third-party scripts that are being executed by billions of devices, even as you are reading these lines, cannot just be refactored. In a perfect world, Id message Google and say, Hey, you know that analytics code that gazillions of dollars are dependent on? Please refactor it entirely. Thank you. Next, Id have to DM every single service in the world to refactor their code too. Wish me luck, but results may vary.

Take Me To Partytown

Partytown is a lazy loaded 6kb library that helps relocate resource intensive scripts into a web worker and off of the main thread. Its goal is to help speed up sites by dedicating the main thread to your code, and offloading third-party scripts to a web worker.

But, the most important piece it brings to the table is allowing the web worker to synchronously read from the main thread. If code running within the web worker can call blocking DOM APIs with synchronous return values, then that means we can run, unaltered, third-party scripts in a worker. The third-party code happily executes as intended, but within a different thread as to not take resources away from your code.

Sandboxing and Isolation

Third-party scripts are often a black-box with large amounts of Javascript. What's buried within the obfuscated code is difficult to tell. It's minified for good reason, but regardless it becomes very difficult to understand what third-party scripts are executing on your site and your users devices, and on the same thread/context as your app's code.

Partytown, on the other hand, is able to sandbox and isolate third-party scripts within a web worker and allow, or deny, access to main thread APIs. This includes cookies, localStorage, userAgent, etc. Because the code must go through Partytowns proxy in order to access the main thread, Partytown also has the ability to log every read and write, and even restrict access to certain DOM APIs.

Essentially, Partytown lets you:

  • Isolate third-party scripts within a sandbox.
  • Configure which browser APIs specific scripts can and cannot execute.
  • Option to log API calls and arguments in order to give better insight as to what the scripts are doing.

This could be useful for many different use-cases, including:

  • Blocking access to document.cookie
  • Providing a standard navigator.userAgent
  • Not allowing scripts to write to localStorage
  • Turning document.write() into a noop function
  • Block scripts from requesting other scripts

Current Status and Whats Next

Partytown is still in alpha, it is highly experimental and not ready for production. However, weve been actively testing it out on a few pages within our production site on Builder.io, and so far so good. Data is being collected as expected and our analytics look unaffected. Our goal is to collect the data now, so that it can be presented in future posts.

In the next post, Ill be focusing on how the synchronous communication channel works and some of its trade-offs.

Additionally, well show how you can start testing Partytown within a React or Next.js project, or really any website or web app. Here's a quick example of how Partytown can be used within a Next.js document, but much more to come in follow up posts:

import { Partytown, GoogleTagManager } from '@builder.io/partytown/react';import Document, { Html, Head, Main, NextScript } from 'next/document';export default class MyDocument extends Document {  render() {    return (      <Html>        <Head>          <GoogleTagManager containerId={'GTM-XXXXX'} />          <Partytown />        </Head>        <body>          <Main />          <NextScript />        </body>      </Html>    );  }}

If youd like to learn more, or even help test, please come party with us on our Discord channel, or ping me at @adamdbradley. Id love to ensure Partytown can work with your service or use-case, so please dont hesitate to start a chat.

Id also like to thank some awesome people weve been lucky enough to bounce ideas off of, and help validate if this could work IRL: Addy Osmani, Ilya Grigorik, Kristofer Baxter, Shubhie Panicker, Zach Leatherman, Misko Hevery, Steve Sewell and the entire Builder.io team.

Party on, Wayne!


Original Link: https://dev.to/adamdbradley/introducing-partytown-run-third-party-scripts-from-a-web-worker-2cnp

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To