1.0.2 • Published 5 years ago

showrss-api v1.0.2

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

ShowRSS API

Simple api for http://showrss.info

Install

npm install showrss-api

Find series info

const {getSeries, getInfoById} = require('showrss-api');

(async function(){
    const series = await getSeries();
    const serie = series[1];
    const serieInfo = await getInfoById(serie.id);
    return `Serie found: ${JSON.stringify(serieInfo,null,2)}`;
    
})().then(console.log).catch(e => console.log(e));