PageSpeed Insights. Reduce unused JavaScript

You’ve passed a test on https://pagespeed.web.dev/ and got a similar problem

pagespeed insights opportunities
PageSpeed insights opportunities

PageSpeed Insights shows an opportunity that I can reduce unused JavaScript.

I’ll show you how to do that using the code coverage feature.

Run code coverage

Open the website you want to improve.

Open DevTools. In Chrome, you can do it by right click mouse -> Inspect or by Key F12 or by shortcut Ctrl+Shift+I.

Next Step, you need to press Run command (Ctrl+Shift+P):

Run command

Then start to type coverage and you’ll see what we are looking for Show coverage:

Show Coverage tab

After that, you’ll see the tab Coverage at the bottom:

Run Coverage

You need to press that button (grey circle) to run the code coverage test.

Check result

The final result of Coverage looks like this:

Coverage result list. Contains CSS and JS files with unused code.

CSS and JS files are ordered by Unused Bytes column. You can check the panel above and filter your results.

Your next step is to find a file that has the most unused bytes (there are also could be a lot 3rd party scripts you can’t edit) and open it by double-clicking.

Coverage result with unused code

Take a look at the opened file. There is the source code of the JS file with red lines at the beginning. It means those parts of the code are unused. Those parts can be one of the brunch of condition and whole function as well.

Reduce unused JavaScript

So what you can do:

  1. Check unused code.
  2. If you don’t use it at all, remove it.
  3. if you use it only on some pages then you can move it to a separate file and include the file only for specific pages/templates.
  4. For WordPress, you can use plugins like Plugin Organizer to exclude plugins (and their CSS, JS) on some pages.

Reduce unused CSS

What’s more, you can apply the same strategy to reduce unused CSS. Check the steps in the previous section.

References

  1. https://developer.chrome.com/docs/devtools/coverage/
  2. https://developer.chrome.com/docs/devtools/command-menu/#open
  3. https://pagespeed.web.dev/
Categories: js

You might also like



Leave a Comment

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.