1.0.0 • Published 3 years ago

youtube-playlist-creator v1.0.0

Weekly downloads
3
License
ISC
Repository
-
Last release
3 years ago

Youtube-Playlist-Creator is a nodejs package to create playlist on youtube automatically. It currently runs only on windows.

Installation

npm install youtube-playlist-creator

Example

In this example we first import package, then we login with cookies and then create a playlist.

var youtube=require("youtube-playlist-creator");
function get_link(response){
var playlist_link=response['body']['playlist_link']
console.log("Playlist Link",playlist_link)
}

function create(){
	youtube.create_playlist('playlist name',get_link)
}
youtube.login_cookie(cookie_list,create)

DataKund

datakund is needed for browser automation. As soon as this package is imported in code, automated browser will open up.

Import

var youtube=require("youtube-playlist-creator");

Login with credentials

youtube.login(username,password)

Login with cookies

youtube.login_cookie(list_of_cookies)

Create Playlist

youtube.create_playlist('playlist name'

Cookies

To login with cookies Edit this Cookie Extension can be added to browser

Contact Us