1.0.0 • Published 3 years ago

youtube-auto-search v1.0.0

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

Youtube-Auto-Search is a nodejs package to search keyword on youtube and get search results automatically. It currently runs only on windows.

Installation

npm install youtube-auto-search

Example

In this example we first import package, then we search a keyword and get its search results.

var youtube=require("youtube-auto-search");

function get_data(response){
	var data=response["body"]
}
function get_results(response){
	youtube.search_results(get_data)
}
youtube.search("keyword",get_results)

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-auto-search");

Search keyword

youtube.search("keyword")

Get Search Results

youtube.search_results()

Contact Us