1.0.11 • Published 5 years ago

vidstreaming-scraper v1.0.11

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

Vidstreaming Scraper

Build Status npm version Dependency Status DevDependency Status License Doge

A scraper for Vidstreaming.

This package is part of the SourceScraper-Project.

Getting Started

Installation

$ npm i vidstreaming-scraper

Usage

const { VidstreamingScraper } = require('vidstreaming-scraper');

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

API

The API generated with TypeDoc can be found here.