ytv
node.js module to Manage Youtube Video Information
npm install ytv
example
// example/index.js
let ytv = require("ytv");
// any youtube video link
ytv.get_info("https://www.youtube.com/watch?v=HWR8Aw5htvE&t=59s&pp=ygUJ6rCQ7Iqk7Yq4")
.then(info => console.log(info));
result
info {
title,
view,
hashtag,
date
small_thumbnail,
big_thumbnail,
channel_name,
video_length
}