1.0.0 • Published 5 years ago

playlist-maker v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

playlist-maker

A simple node.js module to generate a youtube playlist from a string of whitespace or comma separated video URLs

Installation:

 npm install playlist-maker --save

Usage

var playlistMaker = require("playlist-maker);
var videos = "https://www.youtube.com/watch?v=KbRtA_brCQ0,https://www.youtube.com/watch?v=k05i8bT_Pkg,https://www.youtube.com/watch?v=b5X7ZiAOkMU";

playlistMaker.getPlaylist(videos, function(result){
    console.log("Here's your playlist:",result);
});

Example:

See:

Or see it running here: