@obg-lab/youtube-channel-feed

Get Youtube Channel feed and parse to json

Usage no npm install needed!

<script type="module">
  import obgLabYoutubeChannelFeed from 'https://cdn.skypack.dev/@obg-lab/youtube-channel-feed';
</script>

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-feed

How to use

const { getChannelFeed } = require("./index");

getChannelFeed("channelId").then((feed) => {
  console.log(feed);
});