rootcf / ytcf

Very simple way to use YouTube Data API V3

Repository from Github https://github.comrootcf/ytcfRepository from Github https://github.comrootcf/ytcf

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

About

Very simple way to use YouTube Data API V3

License:MIT License


Languages

Language:JavaScript 100.0%