0.1.1 • Published 4 years ago

@codewithkyle/lightkeeper v0.1.1

Weekly downloads
2
License
GPL-3.0
Repository
-
Last release
4 years ago

Lightkeeper

An automated lighthouse testing, reporting, and budgeting CLI tool.

Installation

Install the NPM package:

npm i -D @codewithkyle/lightkeeper

Add the script:

"scripts": {
    "audit": "lightkeeper"
}

Run the audit:

npm run audit

Settings

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"
}