How To Use PageSpeed Insights On Localhost

Posted on Jul 20, 2023

Quick Summary
  • Chrome Dev Tools is the quickest and easiest option
  • For bulk testing on local, use Ngrok

Running PageSpeed Insights on a localhost page is extremely simple using DevTools or Ngrok. This short posts explains how you can do this with a few clicks.

Try PageSpeedPlus Now

Contents

The problem

The online PageSpeed Insights tool needs a URL to be publicly available on the internet to run its analysis engine against it and as local environments aren't publicly accessible, another solution is needed to get a PagesSpeed Insights score from your development environment. 

Solution 1 - Chrome Devtools

Various DevTools are bundled as part of Chrome and one of these is Lighthouse, which will allow page speed to be measured on a local environment.

  1. Open the URL you want to test in Chrome such as https://localhost.test/blog 
  2. Right click > Inspect
  3. Click the two chevrons in DevTools and then Lighthouse


  1. Click Analyse page load

  2. After about 30 seconds the score PageSpeed Insights score on your local host page will be displayed

When you make a change to your code, simply analyse the page again to see what impact it had.

Lighthouse in Devtools has a few configuration options. The device can be chosen and by default, it is mobile with a throttled connection. The categories of test can also be configured such as Performance, Accessibility, SEO, etc. It’s recommended to leave all of these on to see their scores. The only reason not to measure all categories is if the tests are taking a long time to execute. Each category needs a few seconds to process so removing some will make the test faster.

Strictly speaking this method runs Lighthouse on localhost, not PageSpeed Insights.

However, for the purposes of measuring page seed on localhost, this is fine. Lighthouse shows lab data only while PageSpeed Insights also shows field data, which isn’t relevant for a local environment. We’ve written a detailed post about the differences between PageSpeed Insights and Lighthouse if you want learn more.

Solution 2 - Chrome Extension

Another option to run PageSpeed Insights on local host is to use the Lighthouse Chrome Extension

  1. Install the Lighthouse Chrome Extension.
  2. Open the URL you want to test in Chrome such as https://localhost.test/blog
  3. Click the Lighthouse icon in your taskbar 
  4. Click Generate report
  5. After about 30 seconds the score PageSpeed Insights score on your local host page will be displayed

This is the easiest option but if you don’t like adding rarely used extensions to your browser, Devtools is a better method.

Solution 3 - Ngrok


It’s possible to make your localhost temporarily available on a public URL using Ngrok. This is commonly used by developers who want to demo something they are working on without deploying it to a staging environment. Ngrok creates a tunnel to your local environment and a short-lived URL that opens it to the internet. The tunnel and URL are destroyed when the session ends. 

By using Ngrok on your local, PageSpeed Insights will then have a public URL that it can access to perform its analysis on.

The easiest way to set up Ngrok is with Laravel Herd, which is a lightweight local development environment that works with all PHP applications including WordPress (so isn’t limited to Laravel projects only).

  1. Install Herd
  2. Navigate to the website directory in your terminal
  3. Run valet share
  4. Copy the URL that is output in the terminal
  5. Paste it into PageSpeed Insights to trigger a scan

Using this method opens the door for more advanced PageSpeed Insights local testing across lots of pages. With a public URL, it’s then possible to Automate PageSpeed Insights scans or run a bulk page speed test across your entire site before deploying it.

Conclusion

Devtools and the Chrome extension are straightforward methods of running PageSpeed Insights on Localhost. They are both ideal for testing single pages and iterating quickly during development. We prefer the Devtools method so our browsers aren’t bloated with rarely used plugins.

If you need to test pages in bulk, using Ngrok will make that possible.

All three of these methods allows you to test PageSpeed Insights locally instead of having to deploy pages to production to test on your live site or opening up staging environments so that PageSpeed Insights can access them.

Of course, testing page speed locally is only the first step and it’s the score on production that really matters. That’s where PageSpeedPlus can help so if you want to measure your scores in bulk, start a trial by clicking the link below.

Try PageSpeedPlus Now

You might also like