1.0.8 • Published 5 years ago

source-scraper-html-runner v1.0.8

Weekly downloads
18
License
MIT
Repository
github
Last release
5 years ago

source-scraper-html-runner

Build Status npm version Dependency Status DevDependency Status License Doge

Provides the HtmlRunner class for scrapping.

This package is part of the SourceScraper-Project.

Getting Started

Installation

$ npm i source-scraper-html-runner

Usage

const { HtmlRunner } = require('source-scraper-html-runner');

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

API

The API generated with TypeDoc can be found here.