/leadcollector

A robust Node.js scraper that collects search results from google and checks whether if they are built on wordpress

Primary LanguageJavaScriptMIT LicenseMIT

NPM

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):

  npm install leadcollector

Usage

var leadcollector = require("leadcollector")

const options = {
  host: 'www.google.com',
  keyword: 'software+auckland',
  results: 100
};

leadcollector.collect(options, function (lead) {
    console.log(lead);
});