Youtube channel feed
Simple nodejs package to load Youtube Channel Feed and parse into JSON.
Install
npm install @obg-lab/youtube-channel-feed --save
# or
yarn add @obg-lab/youtube-channel-feed
How to use
const { getChannelFeed } = require("./index");
getChannelFeed("channelId").then((feed) => {
console.log(feed);
});