Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

freeproxylists-scrapper

rodrigogs39BSD-2-Clause0.4.1

Page scrapper that retrieves proxy server information from FreeProxyLists website

crawler, proxy, web, cheat, spider, scrapper, freeproxylists

readme

FreeProxyLists Scrapper

Build Status npm version npm

Page scrapper that retrieves proxy server information from FreeProxyLists website.

Make sure phantomjs is installed!

npm install freeproxylists-scrapper

var FreeProxyLists = require('freeproxylists-scrapper');

FreeProxyLists.getPages(function (err, pages) {
    if (err) {
        return console.log('Dammit!');
    }
    FreeProxyLists.crawl(pages, function (err, proxylist) {
        if (err) {
            return console.log('Dammit!');
        }
        for (proxy in proxylist) {
            // You have a proxy here
        }
    });
});

License

Licence © Rodrigo Gomes da Silva