saintsweeto / leadcollector

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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);
});

About

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

License:MIT License


Languages

Language:JavaScript 100.0%