Options
All
  • Public
  • Public/Protected
  • All
Menu

source-scraper-dom-runner

source-scraper-dom-runner

Build Status npm version Dependency Status DevDependency Status License Doge

Provides the DomRunner class for scrapping.

This package is part of the SourceScraper-Project.

Getting Started

Installation

$ npm i source-scraper-dom-runner

Usage

const { DomRunner } = require('source-scraper-dom-runner');

(async () => {
    const url = 'some url';
    const data = await new DomRunner().run(url, args => {
        // Extract data using args
    });
    // Do something with extracted data
})();

API

The API generated with TypeDoc can be found here.

Generated using TypeDoc