Options
All
  • Public
  • Public/Protected
  • All
Menu

verystream-scraper

Verystream Scraper

Build Status npm version Dependency Status DevDependency Status License Doge

A scraper for Verystream.

This package is part of the SourceScraper-Project.

Getting Started

Installation

$ npm i verystream-scraper

Usage

const { VerystreamScraper } = require('verystream-scraper');

(async () => {
    const url = 'some url';
    const scrap = await new VerystreamScraper().scrap(url);
    if (scrap.success)
        console.log(scrap.data.sources);
})();

API

The API generated with TypeDoc can be found here.

Generated using TypeDoc