vine-parser

vine-parser ===========

Usage no npm install needed!

<script type="module">
  import vineParser from 'https://cdn.skypack.dev/vine-parser';
</script>

README

vine-parser

Apperently, the vine api doesn't support the lookup of one video. So this library gives you the metadata json you need.

API

vine(id) -> returns a Promise

Usage

    var vine = require('vine-parser');

    vine('Ml16lZVTTxe').then(function(res) {
        console.log(res);
    }, function(err) {
        console.log('oops', err);
    })