1.0.1 • Published 6 years ago
@mahomuri/yt-playlist-fetcher v1.0.1
YouTube Playlist Fetcher
YouTube Playlist Fetcher is yet again another library that fetched a playlist and returns a big array containing its details
Usage
const ytfetcher = require('@mahomuri/yt-playlist-fetcher');
ytfetcher('YouTube API Key', 'Playlist ID')
.then(playlistItems => {
console.log(playlistItems.length);
console.log(playlistItems);
});Options
maxResults- The maxmimum amount of results to return from the playlist, starting from 0.
Installation
npm install @mahomuri/yt-playlist-fetcherTesting
To test it, make sure to change the process.env.API_KEY to you own API Key then type:
npm test