Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
October 24, 2022 07:57 am GMT

Improving Performance of Nuxt apps with Partytown

Partytown is a JavaScript library that helps relocate resource intensive scripts (often third-party scripts) into a web worker and off the main thread. This speeds up our site by freeing up the main thread to run our code.

Web Workers are a simple means for web content to run scripts in background threads. The worker thread can perform tasks without interfering with the user interface. In addition, they can perform I/O using XMLHttpRequest (although the responseXML and channel attributes are always null) or fetch (with no such restrictions). Once created, a worker can send messages to the JavaScript code that created it by posting messages to an event handler specified by that code (and vice versa).

Web Workers

If you would like to learn more about Web Workers, check out here

The main thread is where a browser processes user events and paints. By default, the browser uses a single thread to run all the JavaScript in your page, as well as to perform layout, reflows, and garbage collection. This means that long-running JavaScript functions can block the thread, leading to an unresponsive page and a bad user experience.

Main Thread

If you would like to learn more about the main thread, check out here

Partytown does not get bundled with the rest of your site's JavaScript. Instead, it intentionally stays separate from your code so that it can run within a webworker.

Plausibile - our 3rd party code to optimize

Plausible is lightweight and open source web analytics. No cookies and fully compliant with GDPR, CCPA and PECR. Made and hosted in the EU, powered by European-owned cloud infrastructure

Plausible

After registering and providing your domain you will get a script code similar to the one below:

<script defer data-domain="nuxt-partytown.vercel.app" src="https://plausible.io/js/plausible.js"></script>

In the next section we will be optimizing this script by using Partytown.

Code

At any point, if you will feel lost, check out the GitHub repository that I have prepared for you https://github.com/Baroshem/nuxt-partytown.

I started form a plain Nuxt 3 project that should look more or less like this:

Nuxt 3 project

I will add the Plausible Script to the global head tag of our app:

// https://v3.nuxtjs.org/api/configuration/nuxt.configexport default defineNuxtConfig({    app: {        head: {            script: [                {                    defer: true,                    src: 'https://plausible.io/js/plausible.js',                    'data-domain': 'nuxt-partytown.vercel.app'                }            ]        }    }})

And deploy our app to Vercel.

If we did all the steps correctly, we should see similar result in the browser dev tools:

Plausible in the browser

Now, we will move the script to the web worker by using the Partytown. To make it work we will use the official Nuxt module for the integration with the Partytown developed by Daniel Roe (Kudos to you Sir for the amazing work!).

To move our plausible script to the web worker we would need to add some configuration to our nuxt.config.ts file:

// https://v3.nuxtjs.org/api/configuration/nuxt.configexport default defineNuxtConfig({  modules: ["@nuxtjs/partytown"],  partytown: {    forward: ["$plausible", "$plausible.push"],  },  app: {    head: {      script: [        { children: "window.$plausible = [];" },        // Update this        {          src: "https://plausible.io/js/script.js",          defer: true,          type: "text/partytown",          "data-domain": "nuxt-partytown.vercel.app",        },      ],    },  },});

When we check the browser both our Nuxt app and the Plausible analytics, we can see that we are getting live data while our Plausible script is moved away from the main thread to the web worker.

Plausible and Partytown in Nuxt

Also, when we compare our network tab in both cases we will also be able to see the result of moving the Plausible script to the web worker (the first tab is using Partytown, while the second is not):

Network tab with and without Partytown

This approach works for many more 3rd party scripts that you can check out here.

Summary

Well done! You have just optimized your 3rd party scripts to make you Nuxt app more performant.

Resources


Original Link: https://dev.to/jacobandrewsky/improving-performance-of-nuxt-apps-with-partytown-80p

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