https://github.com/paragdiwan/lighthouse-security-audit
Security Audit using lighthouse
https://github.com/paragdiwan/lighthouse-security-audit
Last synced: about 1 month ago
JSON representation
Security Audit using lighthouse
- Host: GitHub
- URL: https://github.com/paragdiwan/lighthouse-security-audit
- Owner: paragdiwan
- Created: 2020-09-12T14:24:14.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-13T12:35:35.000Z (almost 6 years ago)
- Last Synced: 2025-12-28T15:06:51.630Z (6 months ago)
- Language: JavaScript
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Audit: audits/cookie-http-only.js
Awesome Lists containing this project
README
# Lighthouse Security Audits
## Installation
```sh
npm install -g lighthouse-security-audit
```
## Run from CLI
```sh
`lighthouse-security-audit --options`
```
## Screenshot

## Programmatially
The extension can also be used within your code. A short example is given below.
To render reports etc. it is recommended to import functionality from Lighthouse.
```javascript
const run = require("lighthouse-security-audit");
(async () => {
const results = await run(url, flags);
console.log(results);
})();
```
## Reference
`lighthouse-security` package.