youtube-api-v3-wrapper
v2.3.0
Published
🔭 An easy to use wrapper around the Youtube Data API which is class based and asynchronous.
Downloads
5
Maintainers
Readme
🎥 Youtube API V3 (Wrapper)
🔭 An easy to use wrapper around the Youtube Data API which is class based and asynchronous.
☑ Installation:
npm install youtube-v3-api-wrapper
🛒 Sample code snippet:
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...
})
📣 Documentation
Refer to the offical Youtube API documentation: https://developers.google.com/youtube/v3/docs
✅ Todo:
- Documentation