youtube-auto-search
v1.0.0
Published
A nodejs package to search keyword on youtube and get search results automatically.
Downloads
2
Maintainers
Readme
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()