1.0.5 • Published 1 year ago

ytcf v1.0.5

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

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}!`)
 })
1.0.5

1 year ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago