Source of proxies for proxy-supervisor
$ npm install ps-free-proxy-list
Module exports default singleton
const freeProxyList = require('ps-free-proxy-list');
const source = freeProxyList() // singleton
Alternatively
const FreeProxyList = require('ps-free-proxy-list').Source;
const source = new FreeProxyList();
For complete guide please visit proxy-supervisor.
This source is responsible for collecting new proxies from free-proxy-list.net and adding them to listeners.
- options <Object> Set of configurable options to set on the monitor. Can have the following fields:
- interval <Integer> Specifies how much time should pass after last check is completed. Defaults to 5 minutes.
Source is started automatically on creation, and will trigger for the first time after specified interval is passed.
Starts source. Use only in case you have stopped source manually. Source is started automatically on creation and can work with empty list of listeners.
Stops source. It will clear current timer, but already running load will be not affected.
- Returns: <Promise> A promise, which resolves into an array of received proxies. Those proxies are already added to listeners.
Loads new proxies. This method will request html page with proxies, retrieve addresses and add then to listeners.
To run the test suite, first install the dependencies, then run npm test
:
$ npm install
$ npm test