Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rpivo/lighthouse-multi
comparison tool that generates performance reports based on an arbitrary number of lighthouse audits against different endpoints
https://github.com/rpivo/lighthouse-multi
Last synced: 8 days ago
JSON representation
comparison tool that generates performance reports based on an arbitrary number of lighthouse audits against different endpoints
- Host: GitHub
- URL: https://github.com/rpivo/lighthouse-multi
- Owner: rpivo
- Created: 2020-05-26T20:35:18.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-05T13:56:00.000Z (over 1 year ago)
- Last Synced: 2024-10-05T15:34:56.285Z (about 2 months ago)
- Language: JavaScript
- Size: 415 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Quickstart:
`npx lighthouse-multi --depth=10 --endpoints=http://www.example.com --output=reports`
**lighthouse-multi** is a comparison tool that generates performance reports based on x number of lighthouse audits against a list of endpoints. When run, a JSON file is created that contains averaged metrics for each endpoint.
lighthouse-multi does three things:
1. With the `--depth` parameter (optional), you can run x number of Lighthouse audits against a remote or local URL. Each audit generates a JSON file that is saved in a `reports` folder at the location where `lighthouse-multi` was run.
2. With the `--endpoints` parameter (required), you can run audits against a list of different remote or local URLs. lighthouse-multi will run audits for each of these endpoints and will run x number of audits for each endpoint based on the number passed into the `--depth` parameter (if `--depth` is not provided, then only 1 audit is run per endpoint).
3. Once lighthouse-multi finishes running all audits for each endpoint, it prints averaged performance metrics to the console for each metric. It also saves these averaged metrics to a JSON file in a `reports` folder at the location where `lighthouse-multi` was run. These metrics are calculated by taking all previously generated audits inside the `reports` folder for the given endpoint and averaging out performance metrics based on these audits.## Usage
### Installation
To install:
`npm install -g lighthouse-multi`
or
`yarn global add lighthouse-multi`
### Parameters
Most of the parameters that `lighthouse-multi` can take are wrapped arguments that are passed straight to Lighthouse. For more comprehensive usage, try the [Lighthouse package](https://github.com/GoogleChrome/lighthouse). [lighthouse-ci](https://github.com/GoogleChrome/lighthouse-ci) can also run multiple audits on multiple urls and can calculate the median values of these audits and is more comprehensive for pipeline use, but may require more work to get reporting on all performance metrics.
| option | type | required | default | description |
|---------------------|---------|----------|---------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| endpoints | string | yes | | This is a comma-separated list of endpoints you want to run Lighthouse audits against. If only testing one endpoint: --endpoints=http://www.example.com If testing more than one endpoint, separate each endpoint by a comma: --endpoints=http://www.example.com,http://www.google.com |
| depth | number | no | 1 | This is the number of Lighthouse audits you want to run per endpoint. |
| disableStorageReset | boolean | no | false | For urls that require credentials, this can allow credentials to persist on each audit. No value is needed for this flag: `--disableStorageReset` |
| extraHeaders | string | no | | This is a comma-separated list of `header=value` key-value headers. Values that contain spaces should be wrapped in quotes. |
| output | string | no | reports | This is the destination folder for the generated report. |