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

Package detail

source-scraper-jwplayer-runner

OpenByteDev71MIT1.0.10TypeScript support: included

Provides the JWPlayerRunner class for scrapping.

source-scraper, source, scrap, scraper, scrapers, scraping, extractor, source-scraper-runner, jwplayer

readme

source-scraper-jwplayer-runner

Build Status npm version Dependency Status DevDependency Status License Doge

Provides the JWPlayerRunner class for scrapping.

This package is part of the SourceScraper-Project.

Getting Started

Installation

$ npm i source-scraper-jwplayer-runner

Usage

const { JWPlayerRunner } = require('source-scraper-jwplayer-runner');

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

API

The API generated with TypeDoc can be found here.