freeproxylists-scrapper

Page scrapper that retrieves proxy server information from FreeProxyLists website

Usage no npm install needed!

<script type="module">
  import freeproxylistsScrapper from 'https://cdn.skypack.dev/freeproxylists-scrapper';
</script>

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