Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 358 Bytes

File metadata and controls

21 lines (15 loc) · 358 Bytes

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);
});