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

https://github.com/progfay/eval-detector

Detect calling `eval()` on specific website
https://github.com/progfay/eval-detector

Last synced: 9 months ago
JSON representation

Detect calling `eval()` on specific website

Awesome Lists containing this project

README

          

# `eval()` Detector

Detect calling `eval()` 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
```