https://github.com/progfay/issue-collector
Visit Websites and Collect Audit Issues with CDP
https://github.com/progfay/issue-collector
Last synced: 5 months ago
JSON representation
Visit Websites and Collect Audit Issues with CDP
- Host: GitHub
- URL: https://github.com/progfay/issue-collector
- Owner: progfay
- License: mit
- Created: 2020-12-16T14:33:52.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-23T09:11:24.000Z (almost 5 years ago)
- Last Synced: 2025-01-30T20:16:14.647Z (11 months ago)
- Language: JavaScript
- Homepage:
- Size: 53.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Issue Collector
Visit Websites and Collect Audit Issues with CDP
## Usage
### with docker-compose
Run headless-chrome and Node.js at the same time:
```sh
docker-compose up --build
```
Run only headless-chrome in background:
```sh
docker-compose up -d chrome
```
Run Node.js with build before executing:
```sh
docker-compose up --build node
```
### with Local Environment
1. Run only headless-chrome in background
2. Execute built Javascript code
```sh
docker-compose up -d chrome
npm start
```