
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
gatsby-source-youtube-v3
Advanced tools
A gatsby source plugin for fetching videos from a list of Youtube channels using their channel IDs (and plays nice with Gatsby v3).
Learn more about Gatsby plugins and how to use them here: https://www.gatsbyjs.org/docs/plugins/
npm install --save gatsby-source-youtube-v3
plugins: [
{
resolve: `gatsby-source-youtube-v3`,
options: {
channelId: ['<< Array of Youtube channelIDs>>', 'UCK8sQmJBp8GCxrOtXWBpyEA'],
apiKey: '<< Add your Youtube api key here>>', // Optional for public requests
maxVideos: 50 // Defaults to 50
},
},
...
]
Get all the videos:
{
allYoutubeVideo {
edges {
node {
id
title
description
videoId
publishedAt
privacyStatus
channelTitle
}
}
}
}
Get videos from a specific channel:
{
allYoutubeVideo(filter: {channelId: {eq: "UCK8sQmJBp8GCxrOtXWBpyEA"}}) {
edges {
node {
id
title
description
videoId
publishedAt
privacyStatus
channelTitle
}
}
}
}
title
: The title of the Youtube video
description
: The description of the Youtube video
videoId
: The id for the video on Youtube, can be used to make a url to the video or to embed it
publishedAt
: The date the video was published.
privacyStatus
: The privacy status of the video, public, private, or unlisted
thumbnail
: The information about the largest thumbnail available on Youtube. Sub-properties: url
, width
, height
localThumbnail
: The information about the locally saved thumbnail. Works with gatsby-image
channelId
: The channel id of the Youtube video
channelTitle
: The title of the channel of the Youtube video
FAQs
Gatsby source to fetch data from Youtube API
The npm package gatsby-source-youtube-v3 receives a total of 885 weekly downloads. As such, gatsby-source-youtube-v3 popularity was classified as not popular.
We found that gatsby-source-youtube-v3 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.