@obg-lab/youtube-channel-feed
v0.2.4
Published
Get Youtube Channel RSS feed and parse to json
Readme
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-feedHow to use
const { getChannelFeed } = require("./index");
getChannelFeed("channelId").then((feed) => {
console.log(feed);
});