
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 Node.js API for yifysubtitles.com
npm install ytssubsGet subtitles list by IMDB id
const ytssubs = require('ytssubs')
ytssubs.getSubs('tt1192628', (err, results) => { // also works without 'tt'
console.log(results)
})
/*
{ langs:
[ 'Arabic', 'Brazilian Portuguese', 'Chinese', 'Dutch', 'English', 'Farsi/Persian', 'Finnish', 'French', 'Greek', 'Hebrew', 'Indonesian', 'Italian', 'Korean', 'Malay', 'Norwegian', 'Romanian', 'Serbian', 'Spanish' ],
subs_count: 25,
subs:
[ { lang: 'English',
name: 'Rango',
url: 'http://www.yifysubtitles.com/subtitle/rango-english-yify-1787.zip',
uploader: 'sub',
rating: '6' },
{ lang: 'Arabic',
name: 'Rango',
url: 'http://www.yifysubtitles.com/subtitle/rango-arabic-yify-1786.zip',
uploader: 'sub',
rating: '3' } ...etc
]
}
*/
Download subtitles by URL
const ytssubs = require('ytssubs')
ytssubs.downloadSubs('http://www.yifysubtitles.com/subtitle/rango-english-yify-1787.zip', `${__dirname}/subs`}, () => {
console.log('Your subtitle has been downloaded')
})
/*
You have to provide a file path
The subtitle is downloaded as .srt.
*/
This project is licensed under The MIT License (MIT). Which means that you can use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the software. But you always need to state that Mike Kokkolios is the original author of this template.
Project is developed and maintained by Mike Kokkolios.
FAQs
A yifysubtitles.com subtitles API
We found that ytssubs 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.