An open API service indexing awesome lists of open source software.

https://github.com/codewithkyle/lightkeeper

A lighthouse testing, reporting, and budgeting CLI tool.
https://github.com/codewithkyle/lightkeeper

Last synced: 3 months ago
JSON representation

A lighthouse testing, reporting, and budgeting CLI tool.

Awesome Lists containing this project

README

        

# Lightkeeper

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

## Installation

Install the NPM package:

```sh
npm i -D @codewithkyle/lightkeeper
```

Add the script:

```json
"scripts": {
"audit": "lightkeeper"
}
```

Run the audit:

```sh
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.

```json
"scripts": {
"audit": "lightkeeper -u https://example.com/ -o ./audits"
}
```