
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
updated-youtube-info
Advanced tools
A Node.js module that fetches meta information about YouTube videos. The information is scraped directly from the YouTube website, so no need for a Google API-key.
This project is in no way affiliated with YouTube.
Install as a module via npm.
$ npm install youtube-info
http//www.youtube.com/watch?v={videoId}
var fetchVideoInfo = require('youtube-info');
fetchVideoInfo(videoId, cb);
| Parameter | Meaning |
|---|---|
| videoId | ID of youtube Video |
| callback | (optional) callback function |
var fetchVideoInfo = require('youtube-info');
fetchVideoInfo('{videoId}').then(function (videoInfo) {
console.log(videoInfo);
});
var fetchVideoInfo = require('youtube-info');
fetchVideoInfo('{videoId}', function (err, videoInfo) {
if (err) throw new Error(err);
console.log(videoInfo);
});
{
videoId: '{video Id}',
url: '{video url}',
title: '{video title}',
description: '{video description as HTML}',
owner: '{video owner}',
channelId: '{owner channel id}',
thumbnailUrl: '{video thumbnail url}',
embedURL: '{video embed url}',
datePublished: '{video publication date}',
genre: '{video genre}',
paid: {true/false},
unlisted: {true/false},
isFamilyFriendly: {true/false},
duration: {video duration in seconds},
views: {number of views},
regionsAllowed: [ '{two letter country code}', ... ],
commentCount: {number of comments},
likeCount: {number of likes},
dislikeCount: {number of dislikes},
channelThumbnailUrl: {channel thumbnail url}
}
FAQs
Fetch meta information about YouTube videos, fix 403 error
The npm package updated-youtube-info receives a total of 5 weekly downloads. As such, updated-youtube-info popularity was classified as not popular.
We found that updated-youtube-info demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.