1.0.1 • Published 4 years ago

gatsby-source-youtube-popular-videos v1.0.1

Weekly downloads
8
License
MIT
Repository
-
Last release
4 years ago

gatsby-source-youtube-popular-video

Pulls most popular videos from any youtube channel by channel ID.

Example

In your gatsby-config.js:

module.exports = {
  plugins: [
    {
      resolve: `gatsby-source-youtube-popular-videos`,
      options: {
        key: "youtube_api_key",
        part: "snippet",
        channelId: process.env.CHANNEL_ID,
        chart: "mostPopular",
        maxResults: 6,
      },
    },
  ],
}