Skip to content
This repository was archived by the owner on Oct 19, 2019. It is now read-only.

Latest commit

 

History

History
37 lines (26 loc) · 1.48 KB

File metadata and controls

37 lines (26 loc) · 1.48 KB

Rapidvideo Scraper

Build Status npm version Dependency Status DevDependency Status License Doge

A scraper for Rapidvideo.

This package is part of the SourceScraper-Project.

Getting Started

Installation

$ npm i rapidvideo-scraper

Usage

const { RapidvideoScraper } = require('rapidvideo-scraper');

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

API

The API generated with TypeDoc can be found here.