Skip to content

Get Youtube Channel feed and parse to json

Notifications You must be signed in to change notification settings

obg-lab/youtube-channel-feed

Repository files navigation

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