Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 1.07 KB

File metadata and controls

44 lines (34 loc) · 1.07 KB

ytcf

Codacy Badge

Very simple way to use YouTube Data API V3,

It's not finished yet all. But you can use it.

Usage

Install

npm install ytcf 

Use

Get Video by Video URL

const ytcf = require("ytcf")

ytcf.apiKey("YOUR API KEY")
ytcf.getVideo(videoURL,function(video){
    console.log(`The video's title is ${video.title}`)
})

Get Channel Information by Channel URL

const ytcf = require("ytcf")

ytcf.apiKey("YOUR API KEY")
ytcf.getChannel(channelURL,function(channel){
    console.log(`The channel's title is ${channel.title}`)
})

Search first 15 videos of specified query

const ytcf = require("ytcf")

ytcf.apiKey("YOUR API KEY")
ytcf.searchVideo(query, function(response) {
       console.log(`First video's title is ${response[0].title}!`)
 })