https://github.com/progfay/prop-access-detector
Detect accessing specific property on specific website
https://github.com/progfay/prop-access-detector
Last synced: 9 months ago
JSON representation
Detect accessing specific property on specific website
- Host: GitHub
- URL: https://github.com/progfay/prop-access-detector
- Owner: progfay
- License: mit
- Created: 2020-12-13T08:57:51.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-13T11:49:01.000Z (about 5 years ago)
- Last Synced: 2025-01-30T20:16:22.655Z (11 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# prop-access-detector
Detect accessing specific property on specific website
## 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
```