PHP 7.4.33
Preview: manual-chrome-launcher.js Size: 1.53 KB
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/chrome-launcher/manual-chrome-launcher.js
#!/usr/bin/env node

'use strict';
// Keep this file in sync with lighthouse
// TODO: have LH depend on this one.

/**
 * @fileoverview Script to launch a clean Chrome instance on-demand.
 *
 * Assuming Lighthouse is installed globally or `npm link`ed, use via:
 *     chrome-debug
 * Optionally enable extensions or pass a port, additional chrome flags, and/or a URL
 *     chrome-debug --port=9222
 *     chrome-debug http://goat.com
 *     chrome-debug --show-paint-rects
 *     chrome-debug --enable-extensions
 */

require('./compiled-check.js')('./dist/chrome-launcher.js');
const {Launcher, launch} = require('./dist/chrome-launcher');

const args = process.argv.slice(2);
const chromeFlags = [];
let startingUrl;
let port;
let ignoreDefaultFlags;

if (args.length) {
  const providedFlags = args.filter(flag => flag.startsWith('--'));

  const portFlag = providedFlags.find(flag => flag.startsWith('--port='));
  if (portFlag) port = parseInt(portFlag.replace('--port=', ''), 10);

  const enableExtensions = !!providedFlags.find(flag => flag === '--enable-extensions');
  // The basic pattern for enabling Chrome extensions
  if (enableExtensions) {
    ignoreDefaultFlags = true;
    chromeFlags.push(...Launcher.defaultFlags().filter(flag => flag !== '--disable-extensions'));
  }

  chromeFlags.push(...providedFlags);
  startingUrl = args.find(flag => !flag.startsWith('--'));
}

launch({
  startingUrl,
  port,
  ignoreDefaultFlags,
  chromeFlags,
})
// eslint-disable-next-line no-console
.then(v => console.log(`✨  Chrome debugging port: ${v.port}`));

Directory Contents

Dirs: 6 × Files: 9
Name Size Perms Modified Actions
.github DIR
- drwxr-xr-x 2025-03-28 11:04:33
Edit Download
bin DIR
- drwxr-xr-x 2025-03-28 11:04:33
Edit Download
- drwxr-xr-x 2025-03-28 11:04:33
Edit Download
dist DIR
- drwxr-xr-x 2025-03-28 11:04:33
Edit Download
docs DIR
- drwxr-xr-x 2025-03-28 11:04:33
Edit Download
scripts DIR
- drwxr-xr-x 2025-03-28 11:04:33
Edit Download
117 B lrw-r--r-- 2025-03-28 11:04:33
Edit Download
9.68 KB lrw-r--r-- 2025-03-28 11:04:33
Edit Download
339 B lrw-r--r-- 2025-03-28 11:04:33
Edit Download
559 B lrw-r--r-- 2025-03-28 11:04:33
Edit Download
11.08 KB lrw-r--r-- 2025-03-28 11:04:33
Edit Download
1.53 KB lrwxr-xr-x 2025-03-28 11:04:33
Edit Download
1.26 KB lrw-r--r-- 2025-03-28 11:04:33
Edit Download
6.71 KB lrw-r--r-- 2025-03-28 11:04:33
Edit Download
465 B lrw-r--r-- 2025-03-28 11:04:33
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).