# lightcrawler **Repository Path**: mirrors_github/lightcrawler ## Basic Information - **Project Name**: lightcrawler - **Description**: Crawl a website and run it through Google lighthouse - **Primary Language**: Unknown - **License**: ISC - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # lightcrawler Crawl a website and run it through Google lighthouse ```bash npm install --save-dev lightcrawler lightcrawler --url https://atom.io/ --config lightcrawler-config.json ``` where `lightcrawler-config.json` looks something like this: ```json { "extends": "lighthouse:default", "settings": { "crawler": { "maxDepth": 2, "maxChromeInstances": 5 }, "onlyCategories": [ "Accessibility", "Performance", "Best Practices" ], "onlyAudits": [ "accesskeys", "aria-allowed-attr", "external-anchors-use-rel-noopener", "geolocation-on-start", "no-document-write", "no-mutation-events", "no-old-flexbox", "time-to-interactive", "user-timings", "viewport", "without-javascript" ] } } ``` Enjoy!