11.3.0 • Published 6 months ago

lighthouse v11.3.0

Weekly downloads
396,215
License
Apache-2.0
Repository
github
Last release
6 months ago

Lighthouse Linux Build Status Windows Build Status Coverage Status NPM lighthouse package

Lighthouse analyzes web apps and web pages, collecting modern performance metrics and insights on developer best practices.

Using Lighthouse in Chrome DevTools

Lighthouse is integrated directly into the Chrome Developer Tools, under the "Audits" panel.

Installation: install Chrome.

Run it: open Chrome DevTools, select the Audits panel, and hit "Perform an Audit...".

Using the Chrome extension

Installation: install the extension from the Chrome Web Store.

Run it: follow the extension quick-start guide.

Using the Node CLI

Lighthouse requires Node 6 or later.

Installation:

npm install -g lighthouse
# or use yarn:
# yarn global add lighthouse

Run it: lighthouse https://airhorner.com/

By default, Lighthouse writes the report to an HTML file. You can control the output format by passing flags.

CLI options

$ lighthouse --help

lighthouse <url>

Logging:
  --verbose  Displays verbose logging                                                                                                      [boolean]
  --quiet    Displays no progress, debug logs or errors                                                                                    [boolean]

Configuration:
  --save-assets                  Save the trace contents & screenshots to disk                                                             [boolean]
  --list-all-audits              Prints a list of all available audits and exits                                                           [boolean]
  --list-trace-categories        Prints a list of all required trace categories and exits                                                  [boolean]
  --additional-trace-categories  Additional categories to capture with the trace (comma-delimited).
  --config-path                  The path to the config JSON.
  --chrome-flags                 Custom flags to pass to Chrome (space-delimited). For a full list of flags, see
                                 http://peter.sh/experiments/chromium-command-line-switches/.

                                 Environment variables:
                                 CHROME_PATH: Explicit path of intended Chrome binary. If set must point to an executable of a build of
                                 Chromium version 54.0 or later. By default, any detected Chrome Canary or Chrome (stable) will be launched.
                                                                                                                                       [default: ""]
  --port                         The port to use for the debugging protocol. Use 0 for a random port                                    [default: 0]
  --preset                       Use a built-in configuration.                                            [choices: "full", "perf", "mixed-content"]
  --hostname                     The hostname to use for the debugging protocol.                                              [default: "localhost"]
  --max-wait-for-load            The timeout (in milliseconds) to wait before the page is considered done loading and the run should continue.
                                 WARNING: Very high values can lead to large traces and instability                                 [default: 45000]
  --enable-error-reporting       Enables error reporting, overriding any saved preference. --no-enable-error-reporting will do the opposite. More:
                                 https://git.io/vFFTO
  --gather-mode, -G              Collect artifacts from a connected browser and save to disk. If audit-mode is not also enabled, the run will quit
                                 early.                                                                                                    [boolean]
  --audit-mode, -A               Process saved artifacts from disk                                                                         [boolean]

Output:
  --output       Reporter for the results, supports multiple values                        [choices: "csv", "json", "html"] [default: "html"]
  --output-path  The file path to output the results. Use 'stdout' to write to stdout.
                 If using JSON or CSV output, default is stdout.
                 If using HTML output, default is a file in the working directory with a name based on the test URL and date.
                 If using multiple outputs, --output-path is ignored.
                 Example: --output-path=./lighthouse-results.html
  --view         Open HTML report in your browser                                                                                          [boolean]

Options:
  --help                        Show help                                                                                                  [boolean]
  --version                     Show version number                                                                                        [boolean]
  --blocked-url-patterns        Block any network requests to the specified URL patterns                                                     [array]
  --disable-storage-reset       Disable clearing the browser cache and other storage APIs before a run                                     [boolean]
  --disable-device-emulation    Disable Nexus 5X emulation                                                                                 [boolean]
  --throttling-method                  Controls throttling method         [choices: "devtools", "provided", "simulate"]
  --throttling.rttMs                   Controls simulated network RTT (TCP layer)
  --throttling.throughputKbps          Controls simulated network download throughput
  --throttling.requestLatencyMs        Controls emulated network RTT (HTTP layer)
  --throttling.downloadThroughputKbps  Controls emulated network download throughput
  --throttling.uploadThroughputKbps    Controls emulated network upload throughput
  --throttling.cpuSlowdownMultiplier   Controls simulated + emulated CPU throttling
  --extra-headers               Set extra HTTP Headers to pass with request                                                                 [string]

Examples:
  lighthouse <url> --view                                                   Opens the HTML report in a browser after the run completes
  lighthouse <url> --config-path=./myconfig.js                              Runs Lighthouse with your own configuration: custom audits, report
                                                                            generation, etc.
  lighthouse <url> --output=json --output-path=./report.json --save-assets  Save trace, screenshots, and named JSON report.
  lighthouse <url> --disable-device-emulation                               Disable device emulation and all throttling.
    --throttling-method=provided
  lighthouse <url> --chrome-flags="--window-size=412,732"                   Launch Chrome with a specific window size
  lighthouse <url> --quiet --chrome-flags="--headless"                      Launch Headless Chrome, turn off logging
  lighthouse <url> --extra-headers "{\"Cookie\":\"monster=blue\"}"          Stringify\'d JSON HTTP Header key/value pairs to send in requests
  lighthouse <url> --extra-headers=./path/to/file.json                      Path to JSON file of HTTP Header key/value pairs to send in requests

For more information on Lighthouse, see https://developers.google.com/web/tools/lighthouse/.
Output Examples
lighthouse
# saves `./<HOST>_<DATE>.report.html`

lighthouse --output json
# json output sent to stdout

lighthouse --output html --output-path ./report.html
# saves `./report.html`

# NOTE: specifying an output path with multiple formats ignores your specified extension for *ALL* formats
lighthouse --output json --output html --output-path ./myfile.json
# saves `./myfile.report.json` and `./myfile.report.html`

lighthouse --output json --output html
# saves `./<HOST>_<DATE>.report.json` and `./<HOST>_<DATE>.report.html`

lighthouse --output-path=~/mydir/foo.out --save-assets
# saves `~/mydir/foo.report.html`
# saves `~/mydir/foo-0.trace.json` and `~/mydir/foo-0.screenshots.html`

lighthouse --output-path=./report.json --output json
# saves `./report.json`
Lifecycle Examples

You can run a subset of Lighthouse's lifecycle if desired via the --gather-mode (-G) and --audit-mode (-A) CLI flags.

lighthouse -G http://example.com
# launches browser, collects artifacts, saves them to disk (in `./latest-run/`) and quits

lighthouse -A http://example.com
# skips browser interaction, loads artifacts from disk (in `./latest-run/`), runs audits on them, generates report

lighthouse -GA http://example.com
# Normal gather + audit run, but also saves collected artifacts to disk for subsequent -A runs.


# You can optionally provide a custom folder destination to -G/-A/-GA. Without a value, the default will be `$PWD/latest-run`.
lighthouse -GA=./gmailartifacts https://gmail.com

Notes on Error Reporting

The first time you run the CLI you will be prompted with a message asking you if Lighthouse can anonymously report runtime exceptions. The Lighthouse team uses this information to detect new bugs and avoid regressions. Opting out will not affect your ability to use Lighthouse in any way. Learn more.

Viewing a report

Lighthouse can produce a report as JSON or HTML.

HTML report:

Lighthouse report

Online Viewer

Running Lighthouse with the --output=json flag generates a json dump of the run. You can view this report online by visiting https://googlechrome.github.io/lighthouse/viewer/ and dragging the file onto the app. You can also use the "Export" button from the top of any Lighthouse HTML report and open the report in the Lighthouse Viewer.

In the Viewer, reports can be shared by clicking the share icon in the top right corner and signing in to GitHub.

Note: shared reports are stashed as a secret Gist in GitHub, under your account.

Docs & Recipes

Useful documentation, examples, and recipes to get you started.

Docs

Recipes

Videos

The session from Google I/O 2017 covers architecture, writing custom audits, GitHub/Travis/CI integration, headless Chrome, and more:

Lighthouse @ Google I/O

click to watch the video

Develop

Read on for the basics of hacking on Lighthouse. Also see Contributing for detailed information.

Setup

# yarn should be installed first

git clone https://github.com/GoogleChrome/lighthouse

cd lighthouse
yarn
yarn install-all
yarn build-all

Run

node lighthouse-cli http://example.com

Getting started tip: node --inspect --debug-brk lighthouse-cli http://example.com to open up Chrome DevTools and step through the entire app. See Debugging Node.js with Chrome DevTools for more info.

Tests

# lint and test all files
yarn test

# watch for file changes and run tests
#   Requires http://entrproject.org : brew install entr
yarn watch

## run linting, unit, and smoke tests separately
yarn lint
yarn unit
yarn smoke

## run closure compiler (on whitelisted files)
yarn closure
## import your report renderer into devtools-frontend and run devtools closure compiler
yarn compile-devtools

Lighthouse Integrations

This section details projects that have integrated Lighthouse. If you're working on a cool project integrating Lighthouse and would like to be featured here, file an issue to this repo or tweet at us @_lighthouse

  • Calibre - Calibre is a web performance monitoring tool running Lighthouse continuously or on-demand via an API. Test using emulated devices and connection speeds from a number of geographical locations. Set budgets and improve performance with actionable guidelines. Calibre comes with a free 14-day trial.

  • HTTPArchive - HTTPArchive tracks how the web is built by crawling 500k pages with Web Page Test, including Lighthouse results, and stores the information in BigQuery where it is publicly available.

  • Treo - Treo is Lighthouse as a Service. It provides regression testing, geographical regions, custom networks, and integrations with GitHub & Slack. Treo is a paid product with plans for solo-developers and teams.

  • Web Page Test — An open source tool for measuring and analyzing the performance of web pages on real devices. Users can choose to produce a Lighthouse report alongside the analysis of WebPageTest results.

Related Projects

FAQ

How does Lighthouse work?

See Lighthouse Architecture.

Can I configure the lighthouse run?

Yes! Details in Lighthouse configuration.

How does Lighthouse use network throttling, and how can I make it better?

Good question. Network and CPU throttling are applied by default in a Lighthouse run. The network attempts to emulate 3G and the CPU is slowed down 4x from your machine's default speed. If you prefer to run Lighthouse without throttling, you'll have to use the CLI and disable it with the --disable-* flags mentioned above.

Read more in our guide to network throttling.

Are results sent to a remote server?

Nope. Lighthouse runs locally, auditing a page using a local version of the Chrome browser installed the machine. Report results are never processed or beaconed to a remote server.

How do I author custom audits to extend Lighthouse?

Tip: see Lighthouse Architecture for more information on terminology and architecture.

Lighthouse can be extended to run custom audits and gatherers that you author. This is great if you're already tracking performance metrics in your site and want to surface those metrics within a Lighthouse report.

If you're interested in running your own custom audits, check out our Custom Audit Example over in recipes.

How do I contribute?

We'd love help writing audits, fixing bugs, and making the tool more useful! See Contributing to get started.


@monodrom/monodrom@synclis/mithril-uitestcafe-lighthouse-1lighthouse-loacalelparking-lighthouse@fundamend/builder-archetype-staticsrobot-serversrobot-basics@toptal/lhci-cli@etiennemartin/lighthouse-cilighthouse-get@everything-registry/sub-chunk-2070perf-battle@gbisogno/cdp-utilsweb-monitor-testerweb-speed-compareweb-reviewweb-audit-module-lighthouseweb_auto_codeceptjswebpack-lighthouse-plugin@genesislcap/foundation-testing@genexus/lighthouse-inspectorxml-lighthousevirgo-runview-web-performance-plugin@gov-cy/govcy-frontend-tester@marco-eckstein/lighthouse-ignorereport-clirequest-okrushyserverless-lighthouseserverless-lighthouse-lksmurf-fetchthird-party-analyserthird-party-lighthouse-auditthirdy-agenttech-performancetest-ac-123-testsite-audit-seositeauditrwill-perftestcafe-lighthousetestium-driver-wdshoal-integrationtestsvita-playwrightv_lightmappervantage-nextwebkwebtemplatecliwebperf-comparisonwebsite-performance-analysis-lighthouse-draftwps-website-performance-scoreswvmon@juerry/lighthouse-cli@koalati/tool-accessibility@koalati/tool-loading-speed@kavrillon/web-q5y@letgowebteam/varys-cli@lightkeepr/node@lhci/cli@lhci/utils@lighthouse-pipeline/core@lostmyname/amuse-react-scriptsdx-scripts@ibmdotcom/beaconebank-cli@gerv/fusion-cli@humanmade/bulk-lighthouse@missoma/cligatsby-performance-budgetgoogle-lighthouse-puppeteergore@onpure/pack-clifranklin-bulk-sharedfranklin-importer-shared@metrics-pli/corefxs-image-processorfxs-lighthousegatsby-lighthouse-cli@narya/cli@mixbened/green-means-go@mobify/test-framework@modus/gimbal@netlify/plugin-lighthouse@nodaguti/lightkeeperexthouse@immowelt/lighthouse-ci@jht/lhci-cli@jsenv/lighthouse-impact@jsenv/lighthouse-score-impact@jsenv/lighthouse-score-merge-impact@kmcid/cypress-audit-lighthouse@redhare/rh-xlight-coreip-cookie-audit@porterjs/lighthouse@haibun/sarif@isomerpages/isomerpages-travisci-scripts@intouchgroup/lighthouse-batch@jamesseymour/lighthouse@ivinas/lhtest
11.2.0

7 months ago

11.3.0

6 months ago

11.1.0

8 months ago

11.0.0

9 months ago

10.2.0-dev.20230531

11 months ago

10.2.0-dev.20230530

11 months ago

10.4.0

10 months ago

10.3.0-dev.20230613

11 months ago

10.3.0-dev.20230618

10 months ago

10.3.0-dev.20230619

10 months ago

10.3.0-dev.20230616

10 months ago

10.3.0-dev.20230617

10 months ago

10.3.0-dev.20230614

11 months ago

10.4.0-dev.20230710

10 months ago

10.4.0-dev.20230711

10 months ago

10.4.0-dev.20230712

10 months ago

10.4.0-dev.20230713

10 months ago

10.4.0-dev.20230714

10 months ago

10.4.0-dev.20230715

10 months ago

10.3.0-dev.20230623

10 months ago

10.3.0-dev.20230624

10 months ago

10.3.0-dev.20230621

10 months ago

10.3.0-dev.20230622

10 months ago

10.3.0-dev.20230620

10 months ago

10.3.0-dev.20230629

10 months ago

10.3.0-dev.20230627

10 months ago

10.3.0-dev.20230628

10 months ago

10.3.0-dev.20230625

10 months ago

10.3.0-dev.20230626

10 months ago

10.3.0-dev.20230630

10 months ago

10.2.0-dev.20230519

11 months ago

10.2.0-dev.20230518

11 months ago

10.2.0-dev.20230517

11 months ago

10.2.0-dev.20230516

12 months ago

10.2.0-dev.20230515

12 months ago

10.2.0-dev.20230514

12 months ago

10.2.0-dev.20230524

11 months ago

10.2.0-dev.20230523

11 months ago

10.2.0-dev.20230522

11 months ago

10.2.0-dev.20230521

11 months ago

10.2.0-dev.20230520

11 months ago

10.2.0-dev.20230529

11 months ago

10.2.0-dev.20230528

11 months ago

10.2.0-dev.20230527

11 months ago

10.2.0-dev.20230526

11 months ago

10.2.0-dev.20230525

11 months ago

10.3.0

11 months ago

10.3.0-dev.20230701

10 months ago

10.3.0-dev.20230708

10 months ago

10.3.0-dev.20230709

10 months ago

10.3.0-dev.20230706

10 months ago

10.3.0-dev.20230707

10 months ago

10.3.0-dev.20230704

10 months ago

10.3.0-dev.20230705

10 months ago

10.3.0-dev.20230702

10 months ago

10.3.0-dev.20230703

10 months ago

10.2.0-dev.20230612

11 months ago

10.2.0-dev.20230611

11 months ago

10.2.0-dev.20230610

11 months ago

10.2.0-dev.20230601

11 months ago

10.2.0-dev.20230609

11 months ago

10.2.0-dev.20230608

11 months ago

10.2.0-dev.20230607

11 months ago

10.2.0-dev.20230606

11 months ago

10.2.0-dev.20230605

11 months ago

10.2.0-dev.20230604

11 months ago

10.2.0-dev.20230603

11 months ago

10.2.0-dev.20230602

11 months ago

10.2.0

12 months ago

10.1.1-dev.20230430

12 months ago

10.2.0-dev.20230513

12 months ago

10.2.0-dev.20230512

12 months ago

10.2.0-dev.20230511

12 months ago

10.2.0-dev.20230510

12 months ago

10.1.1-dev.20230427

12 months ago

10.1.1-dev.20230428

12 months ago

10.1.1-dev.20230429

12 months ago

10.2.0-dev.20230509

12 months ago

10.2.0-dev.20230508

12 months ago

10.2.0-dev.20230507

12 months ago

10.2.0-dev.20230506

12 months ago

10.2.0-dev.20230505

12 months ago

10.2.0-dev.20230504

12 months ago

10.1.1

1 year ago

10.1.1-dev.20230503

12 months ago

10.1.1-dev.20230501

12 months ago

10.1.1-dev.20230502

12 months ago

10.0.0

1 year ago

10.0.1

1 year ago

10.0.2

1 year ago

10.1.0

1 year ago

9.6.8

1 year ago

9.6.7

2 years ago

9.6.4

2 years ago

9.6.3

2 years ago

9.6.2

2 years ago

9.6.6

2 years ago

9.6.5

2 years ago

9.6.1

2 years ago

9.5.0

2 years ago

9.4.0

2 years ago

9.3.1

2 years ago

9.3.0

2 years ago

9.2.0

2 years ago

9.0.0

2 years ago

9.1.0

2 years ago

8.6.0

3 years ago

8.5.1

3 years ago

8.5.0

3 years ago

8.4.0

3 years ago

8.3.0

3 years ago

8.2.0

3 years ago

8.1.0

3 years ago

8.0.0

3 years ago

7.4.0

3 years ago

7.5.0

3 years ago

7.3.0

3 years ago

7.2.0

3 years ago

7.1.0

3 years ago

7.0.1

3 years ago

7.0.0

3 years ago

6.5.0

3 years ago

6.4.1

4 years ago

6.4.0

4 years ago

6.3.0

4 years ago

6.2.0

4 years ago

6.1.1

4 years ago

6.1.0

4 years ago

6.0.0

4 years ago

6.0.0-beta.0

4 years ago

5.6.0

5 years ago

5.5.0

5 years ago

5.4.0

5 years ago

5.3.0

5 years ago

5.2.0

5 years ago

5.1.0

5 years ago

5.0.0

5 years ago

4.3.1

5 years ago

4.3.0

5 years ago

4.2.0

5 years ago

4.1.0

5 years ago

4.0.0

5 years ago

4.0.0-beta

5 years ago

4.0.0-alpha.1

5 years ago

4.0.0-alpha.0

5 years ago

3.2.1

6 years ago

3.2.0

6 years ago

3.1.1

6 years ago

3.1.0

6 years ago

3.0.3

6 years ago

3.0.2

6 years ago

3.0.1

6 years ago

3.0.0

6 years ago

3.0.0-beta.0

6 years ago

3.0.0-alpha.2

6 years ago

3.0.0-alpha.1

6 years ago

3.0.0-alpha

6 years ago

2.9.4

6 years ago

2.9.3

6 years ago

2.9.2

6 years ago

2.9.1

6 years ago

2.9.0

6 years ago

2.9.0-0

6 years ago

2.8.0

6 years ago

2.7.0

6 years ago

2.6.0

6 years ago

2.5.0

7 years ago

2.4.0

7 years ago

2.3.0

7 years ago

2.2.1

7 years ago

2.1.0

7 years ago

2.0.0

7 years ago

2.0.0-alpha.7

7 years ago

2.0.0-alpha.6

7 years ago

2.0.0-alpha.5

7 years ago

2.0.0-alpha.4

7 years ago

2.0.0-alpha.3

7 years ago

2.0.0-alpha.2

7 years ago

1.6.5

7 years ago

1.6.3

7 years ago

1.6.2

7 years ago

1.6.1

7 years ago

1.6.0

7 years ago

1.5.1

7 years ago

1.5.0

7 years ago

1.4.1

7 years ago

1.4.0

7 years ago

1.3.2

7 years ago

1.3.1

7 years ago

1.3.0

7 years ago

1.2.2

7 years ago

1.2.1

7 years ago

1.2.0

7 years ago

1.1.7

7 years ago

1.1.6

8 years ago

1.1.5

8 years ago

1.1.4

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

9 years ago

0.0.2

12 years ago

0.0.1

12 years ago