plyt-fd
v1.3.0
Published
A Node.js package to easily download YouTube playlists.
Downloads
4
Readme
youtube-playlist-downloader
Overview
A Node.js package to easily download YouTube playlists.
Installation
npm install plyt-fd
const { downloadPlaylist } = require("plyt-fd");
// Example for downloading playlist
const playlistUrl = "<YOUR_PLAYLIST_URL>";
const outputDirectory = "<PLAYLIST_DIR_PATH>";
downloadPlaylist(playlistUrl, outputDirectory);