MDxWARRIORxOP / is-youtube-channel

Validate a youtube channel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

is-youtube-channel Build Status

Simple check to see if a given string is a youtube channel

Example

var isChannel = require('is-youtube-channel')

isChannel("UCMIh8iKkrWVhV_YSgHejvoA", function(err, valid){}) // channel ids
isChannel("monstercat", function(err, valid){})               // aliases
isChannel("monstercatmedia", function(err, valid){})          // usernames
isChannel("JacobiCarterMC", function(err, valid){})           // /c/ urls

API

isChannel(name : String,
          function(err : Error | null, isValid : bool, url : String))
  • name: youtube username, channel id, or alias
  • err: error objects if a request error occurs
  • isValid: true if channel is a valid channel, false otherwise
  • url: url that was found to work for the given channel name

About

Validate a youtube channel


Languages

Language:JavaScript 99.3%Language:Makefile 0.7%