leadcollector
v1.0.2
Published
A robust Node.js scraper that collects search results from google and checks whether if they are built on wordpress
Downloads
3
Maintainers
Readme
leadcollector
A robust Node.js scraper that collects search results from google and checks whether if they are built on wordpress
Download
The source is available for download from GitHub. Alternatively, you can install using Node Package Manager (npm):
Usage
var leadcollector = require("leadcollector")
const options = {
host: 'www.google.com',
keyword: 'software+auckland',
results: 100
};
leadcollector.collect(options, function (lead) {
console.log(lead);
});