
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A simple way to get data from the tv.com website.
tvcom is pretty straight forward. It has three methods, shows, episodes, summary.
Returns a sorted array of the number most popular tv-shows.
var tvcom = require('tvcom');
tvcom.shows(10, function(err, shows) { ... });
/*
[
{
id: 'game-of-thrones',
title: 'Game of Thrones',
icon: 'http://im0n.clkimg.com/i/sm/069/69088.jpg',
description: 'Game of Thrones is an ...'
},
{
id: 'greys-anatomy',
title: 'Grey\'s Anatomy',
icon: 'http://im1n.clkimg.com/i/sm/000/227.jpg',
description: 'Grey\'s Anatomy is a ...'
},
...
]
*/
Returns an array with all the seasons, with an array of all the episodes of that season.
var tvcom = require('tvcom');
tvcom.episodes('game-of-thrones', function(err, episodes) { ... });
/*
[
[
{
title: 'A Hard Day\'s Night',
firstAired: '3/27/05',
season: '1',
episode: '1',
rating: '9.3',
description: 'Meet Meredith Grey. Daughter of ...'
},
{
title: 'The First Cut Is the Deepest',
firstAired: '4/3/05',
season: '1',
episode: '2',
rating: '9.1',
description: 'The surgical staff tries to ...'
},
...
],
[
{
title: 'Raindrops Keep Falling On My Head',
firstAired: '9/25/05',
season: '2',
episode: '1',
rating: '9.3',
description: 'Picks up where ...'
},
...
],
...
]
*/
Returns an object with a description, some images, videos, and news. The data is from http://www.tv.com/shows/greys-anatomy
var tvcom = require('tvcom');
tvcom.summary('game-of-thrones', function(err, summary) { ... });
/*
{
title: 'Grey\'s Anatomy',
rating: '8.8',
description: 'Grey\'s Anatomy is a ...' }
cast: [
{
name: 'Camilla Luddington',
role: 'Dr. Jo Wilson (Season 10+)',
icon: 'http://dw.com.com/clear/c.gif?sid=1003&ptid=6138',
},
...
],
news: [
{
teaser: 'TV IN DA CLUBUPFRONTS 2013',
title: 'News Briefs: Starz and 50 Cent Are Powering Up for a New DramaABC\'s 2013-2014 Schedule: S.H.I.E.L.D. on Tuesdays, Less DWTS, and OUAT \'s New Spinoff on Thursdays',
link: 'http://tv.com/news/news-briefs-starz-and-50-cent-are-powering-up-for-a-new-drama-137124191630/',
icon: 'http://dw.com.com/clear/c.gif?sid=1003&ptid=6138',
comments: '7',
date: '10 hours ago',
by: {
name: 'Tim Surette',
link: 'http://tv.com/news/author/TimSpot/'
}
},
...
],
photos: [
{
icon: 'http://static.tvtome.com/images/misc/grey.gif',
link: 'http://tv.com/shows/greys-anatomy/photos/image-1684/',
title: 'Patrick Dempsey and Ellen Pompeo on Grey...',
credit: '© 2013 American Broadcasting Companies, Inc.'
},
...
],
clips: [
{
icon: 'http://im0n.clkimg.com/i/em/2/325/2325054.jpg',
link: 'http://tv.com/shows/greys-anatomy/watch/jessica-capshaw-interview-1882579/',
title: 'Jessica Capshaw Interview',
date: '9/25/09',
time: '02:58'
},
...
]
}
*/
MIT
FAQs
Simple scraper to get the data from tv.com
We found that tvcom 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.