Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

sourcescrapper-dom-runner

OpenByteDev124MITdeprecated0.6.10TypeScript support: included

WARNING: This project has been renamed to source-scraper-dom-runner. Install using source-scraper-dom-runner instead.

Provides the DomRunner class for scrapping.

sourcescrapper, source, scrapper, extractor, sourcescrapper-runner, dom

readme

SourceScrapper-DomRunner

Build Status npm version Dependency Status DevDependency Status License Doge

Provides the DomRunner class for scrapping.

This package is part of the SourceScrapper-Project.

Getting Started

Installation

$ npm i sourcescrapper-dom-runner

Usage

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

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

API

The API generated with TypeDoc can be found here.