Awesome
@foo-software/lighthouse-persist
<img src="https://s3.amazonaws.com/foo.software/images/marketing/screenshots/lighthouse-audit-report.png" />A tool for persisting Lighthouse audit results for website monitoring and analysis. Performance, SEO, progressive web app, best practices are exposed in a results object and included in an HTML report. Save reports locally or upload to your AWS S3 bucket.
See a full example report here. This HTML report is generated by lighthouse
.
What it Does
- Defines the
output
option ashtml
. - Runs all Lighthouse audits - Performance, SEO, progressive web app, best practices. Parameters support custom Lighthouse options and configuration.
- Extracts content of the HTML report, populates it in a file and saves locally and / or uploads to the AWS S3 bucket specified by parameters.
- Exposes the result similar to that of using
lighthouse
directly. - Uses the latest major version of Lighthouse under the hood.
Install
npm install @foo-software/lighthouse-persist
Usage
Below are a few standard ways of using this module. See parametes and response payload for more details.
Note: to import in an ES Module enabled environment, you'll need to do something like this until we export an ES Module distribution:
import lighthousePersistPackage from '@foo-software/lighthouse-persist';
const { lighthousePersist } = lighthousePersistPackage;
Save Report to Local Directory.
const path = require('path');
const { lighthousePersist } = require('@foo-software/lighthouse-persist');
(async () => {
const { localReport, result } = await lighthousePersist({
url: 'https://www.foo.software',
// example if you have an "artifacts" directory in your root directory
outputDirectory: path.resolve('./artifacts')
});
console.log({ localReport, result });
})();
Upload Report to S3
const { lighthousePersist } = require('@foo-software/lighthouse-persist');
(async () => {
const { report, result } = await lighthousePersist({
url: 'https://www.foo.software',
awsAccessKeyId: 'abc123',
awsBucket: 'myBucket',
awsRegion: 'us-east-1',
awsSecretAccessKey: 'def456'
});
console.log({ report, result });
})();
Run Lighthouse with PageSpeed Insights API
There are a few benefits of running Lighthouse via PageSpeed Insights API.
- Offload resource consumption to Google 🙌! If you haven't noticed Lighthouse memory and CPU consumption is expensive.
- Get consistent results by running Lighthouse in a stable, consistent environment.
- Get additional data like
loadingExperience
andoriginLoadingExperience
from the CrUX API (under the hood).
The downside is that you won't have all the configuration options by not using Lighthouse directly, like specific network settings and extraHeaders
. But in most cases, the default settings are all you need. You can still target mobile
or desktop
via strategy
. If using @foo-software/lighthouse-persist
strategy
will be derived from config.settings.emulatedFormFactor
and defaults to mobile
.
This module will get results from PageSpeed Insights API, and generate an HTML report (optionally), and provide the result consistently with the other examples. The only mandatory parameter to run with PageSpeed Insights API is psiKey
.
const lighthousePersist = require('@foo-software/lighthouse-persist').default;
(async () => {
const { loadingExperience, report, result } = await lighthousePersist({
url: 'https://www.foo.software',
awsAccessKeyId: 'abc123',
awsBucket: 'myBucket',
awsRegion: 'us-east-1',
awsSecretAccessKey: 'def456',
psiKey: 'ghi789',
});
console.log({ loadingExperience, report, result });
})();
Parameters
There are two different ways to persist reports. Both ways have required params. Using both is also supported. The url
param is required always.
- Saving reports in a local directory requires the
outputDirectory
param. - Uploading reports to S3 requires
awsAccessKeyId
,awsBucket
,awsRegion
, andawsSecretAccessKey
params.
Response Payload
The result of calling the default function with the parameters above is an object with the below properties.
<table> <tr> <th>Name</th> <th>Description</th> <th>Type</th> </tr> <tr> <td><code>finalScreenshot</code></td> <td>A URL to the final screenshot image. This will only be defined if <code>finalScreenshotAwsBucket</code> parameter was.</td> <td><code>string</code></td> </tr> <tr> <td><code>loadingExperience</code></td> <td>If <code>psiKey</code> was specified and the PageSpeed Insights response includes <code>loadingExperience</code> as documented, then this will be populated with an object per the shape described in the <a href="https://developers.google.com/speed/docs/insights/rest/v5/pagespeedapi/runpagespeed#response-body">documentation</a>. It's possible this data will not exist for some URLs. Read more about the <a href="https://web.dev/chrome-ux-report-api/">CrUX API</a>.</td> <td><code>object</code></td> </tr> <tr> <td><code>localReport</code></td> <td>A local path to the report (if applicable).</td> <td><code>string</code></td> </tr> <tr> <td><code>result</code></td> <td>A comprehensive result - the equivalent of what is returned when using the <code>lighthouse</code> module directly.</td> <td><code>object</code></td> </tr> <tr> <td><code>originLoadingExperience</code></td> <td>If <code>psiKey</code> was specified and the PageSpeed Insights response includes <code>originLoadingExperience</code> as documented, then this will be populated with an object per the shape described in the <a href="https://developers.google.com/speed/docs/insights/rest/v5/pagespeedapi/runpagespeed#response-body">documentation</a>. It's possible this data will not exist for some URLs. Read more about the <a href="https://web.dev/chrome-ux-report-api/">CrUX API</a>.</td> <td><code>object</code></td> </tr> <tr> <td><code>report</code></td> <td>A URL to the report HTML file.</td> <td><code>string</code></td> </tr> </table>Taking it to Another Level
If you're interested running Lighthouse audits on your web pages automatically - check out www.foo.software. Foo runs audits automatically, stores results and provides charts in a timeline view. You can also trigger runs via Foo's public REST API and tag (with a build number for example).
Credits
<img src="https://lighthouse-check.s3.amazonaws.com/images/logo-simple-blue-light-512.png" width="100" height="100" align="left" /> This package was brought to you by Foo - a website quality monitoring tool. Automatically test and monitor website performance, SEO and accessibility with Lighthouse. Analyze historical records of Lighthouse tests with automated monitoring. Report with confidence about SEO and performance improvements to stay on top of changes when they happen!