DEV Community

Cover image for #DevHack: Optimizing initial load JS from Next.js
Elio Struyf
Elio Struyf

Posted on

#DevHack: Optimizing initial load JS from Next.js

Now that my PimpYourOwnBike website has launched. I started looking at where I can do some optimizations. When looking at the Next.js build output, I spotted a red number in the First Load JS section.

First load JS too big

That would be the first thing on my list to optimize, getting this number from red to green.

What is this First Load JS?

First of all, what is this First Load JS exactly? The documentation specifies that the value is based on the number of assets downloaded when visiting the server's page. The amount of JS shared by all is shown as a separate metric.

To make it simpler to understand, it is all the JS your website requires to start rendering your content. To get this first load JS number down, you have to write less code.

Info: <===>

Ok, that is not entirely true and might be very hard to achieve, but you need to get the bundle/chunk sizes down.

How to lower the first load JS size?

Use fewer dependencies

Check through your code if you have dependencies you might be referencing that are not required anymore.

I know this is what most articles you find will tell this. The reason is that it is very effective, but not easy to achieve. In many cases, you need all these dependencies.

Lazy/dynamic loading components and dependencies

If you need all these dependencies, check what can be lazy or dynamically loaded. This approach means that you will load all the initial components on the page and asynchronously load all the less critical others, or they do not matter if they are loaded later.

The good thing about this approach is that it works both for React components for dependencies you want to use.

When using React, you typically use React.lazy, but this will not work if you are using Server-Side Rendering with Next.js. Luckily, there is a Next.js dependency called dynamic, which does the same thing.

Info: Dynamic import Next.js documentation

import dynamic from 'next/dynamic';

// Loading StickerForm component, showing spinner while fetching the component
// Use it like you're use to <StickerForm />
const StickerForm = dynamic(() => import('./StickerForm'), { loading: () => <Spinner /> });
Enter fullscreen mode Exit fullscreen mode

Above, you see an example of how I load my form on the site. By only implementing this dynamic import, I got my first load JS size down to 89kB.

First load JS optimized

From project to project, it might be hard to achieve the same optimizations. So try to find these components or libraries, which are not instantly required for your page. For instance, this could be used for components that are, by default, loaded below the fold.

Happy coding

First published on: https://www.eliostruyf.com/devhack-optimizing-initial-load-js-nextjs/

Top comments (0)