š An easy to use wrapper around the Youtube Data API which is class based and asynchronous.
npm install youtube-api-v3-wrapper
npm install youtube-v3-api-wrapper
`
š Sample code snippet:
`JS
const { YoutubeAPIClient } = require("youtube-v3-api-wrapper");
// ā Subject to changes
// Find your YOUTUBE API KEY => https://developers.google.com/youtube/v3/docs
const youtube = new YoutubeAPIClient("key", "YOUTUBE API KEY");
// YoutubeAPI#getVideosByMostPopular(maxResults, params)
youtube.getVideosByMostPopular(10, { regionCode: "US" })
.then(resp => {
// Code...
}).catch(err => {
// Code...
})
``