freeproxylists-scrapper
v0.4.1
Published
Page scrapper that retrieves proxy server information from FreeProxyLists website
Downloads
42
Maintainers
Readme
FreeProxyLists Scrapper
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