vidstreaming-scraper

A scraper for Vidstreaming

Usage no npm install needed!

<script type="module">
  import vidstreamingScraper from 'https://cdn.skypack.dev/vidstreaming-scraper';
</script>

README

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.