1.0.0 • Published 5 years ago

pathfinder2 v1.0.0

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

Pathfinder II

The movie grabber API

Supported website

How to ?

It's easy to grab page movie you need

const pathfinder = require('Pathfinder')

pathfinder.grab(new URL('your_url_here'))
    .then(movies => {
        // movies is an array of...Movie
    })
    .catch(err => console.log(err))

The Movie object is described as

Movie : {
    title   : String
    quality : String
    link    : [String]
}