
Research
/Security News
npm Author Qix Compromised via Phishing Email in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
subscene_scraper
Advanced tools
subd command
npm install subscene_scraper --save
var subscene_scraper=require('subscene_scraper');
// for example we will download the subtitle file at current working directory
var path=process.cwd();
//all languages supported by subscene.com are now supported.
subscene_scraper.passiveDownloader('interstellar','english',path)
.then(function(savedFiles){
console.log('subtitle saved to ',savedFiles);
})
.catch(function(err){
console.log('error:',err);
});
//title subtiles have 2 steps (1) chooseTitle (2) chooseRelease
// release subtitles have 1 step (1) chooseRelease
// you'll have to implement chooseTitleSubtitle,chooseReleaseSubtitle functions.
var subscene_scraper=require('subscene_scraper');
var interactiveDownloader=subscene_scraper.interactiveDownloader;
const downloader = interactiveDownloader(movieName, language, saveLocation);
downloader.on('info', async (info, choose) => {
if (info.type === 'title') {
// type === 'title'
// chooseTitle (1)
/// choose subtitle from info.result
const result = choose(chooseTitleSubtitle(info.result));
choose(result);
} else {
/// type === 'release'
// chooseRelease (1)
/// choose subtitle from info.result
choose(chooseReleaseSubtitle(info.result));
}
}).on('title', async (list, choose) => {
// chooseRelease (2)
const result = chooseReleaseSubtitle(list);
choose(result);
}).on('done', (result, movieName) => {
console.log('Downloaded Subtitle at', result)
})
FAQs
Automate subtitle downloading from subscene.com
The npm package subscene_scraper receives a total of 3 weekly downloads. As such, subscene_scraper popularity was classified as not popular.
We found that subscene_scraper 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.

Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.

Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.

Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.