whoisYeshua / proxy-tester

A simple proxy tester

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Install

git clone https://github.com/whatbotisthis/proxy-tester.git
cd proxy-tester
npm install

Configure

Add proxies one per line in format ip:port:user:pass to proxies.txt

Modify domain, delay, threshold, and timeout settings in config.json

{
  "delay": 50, // delay in ms between sending requests
  "domain": 'https://www.sixflags.com/',
  "timeout": 50000,
  "thresholds": { // times in ms
    "good": 1000, // less than this is good
    "bad": 5000 // greater than this is bad
  }
};

Run

npm start

About

A simple proxy tester


Languages

Language:JavaScript 100.0%