https://github.com/james2doyle/simple-page-checker
Run GoogleChrome/puppeteer over a list of pages and check for errors in them
https://github.com/james2doyle/simple-page-checker
chrome nodejs puppeteer
Last synced: 2 months ago
JSON representation
Run GoogleChrome/puppeteer over a list of pages and check for errors in them
- Host: GitHub
- URL: https://github.com/james2doyle/simple-page-checker
- Owner: james2doyle
- Created: 2018-08-06T05:50:08.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-06T05:50:23.000Z (almost 8 years ago)
- Last Synced: 2025-01-07T08:48:51.032Z (over 1 year ago)
- Topics: chrome, nodejs, puppeteer
- Language: JavaScript
- Size: 131 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
simple-page-checker
=====================
> Run [GoogleChrome/puppeteer](https://github.com/GoogleChrome/puppeteer) over a list of pages and check for errors in them

### Setup
* `npm install`
* create `config.json`
* use the following scaffolding:
```json
{
"baseUrl": "",
"pages": [
"/"
],
"timeout": 120000,
"additionalDelay": 2000,
"concurrentPages": 5,
"launchOptions": {
"headless": true
}
}
```
### Running
* `npm start`