@codewithkyle/lightkeeper
v0.1.1
Published
Automated lighthouse testing, reporting, and budgeting
Readme
Lightkeeper
An automated lighthouse testing, reporting, and budgeting CLI tool.
Installation
Install the NPM package:
npm i -D @codewithkyle/lightkeeperAdd the script:
"scripts": {
"audit": "lightkeeper"
}Run the audit:
npm run auditSettings
To test the same URL every time use the -u flag.
To output the lightkeeper report JSON add an output directory with the -o flag.
"scripts": {
"audit": "lightkeeper -u https://example.com/ -o ./audits"
}