
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 full featured, easy to use, CLI app to download subtitles from opensubtitles.org
A full featured, easy to use, CLI app to download subtitles from opensubtitles.org.

npm install -g subs-cli
If you encounter EACCES error on Mac OS read Installation Problems section.
subs /path/to/dir
subs /path/to/file.mkv
subs -h
Usage: subs <path> [options]
Options:
-V, --version output the version number
-l, --lang <value> the language of the subtitles (eng/en, fr/fre, ro/rum,
...) (default: eng)
-o, --overwrite overwrite existing subtitles (default: false)
-p, --path path of file or dir of files to download subtitles for
-s, --save-lang save the current language as default
-h, --help display help for command
If a language is specified with --lang option, using --save-lang flag will save it as the default language
Using --overwrite flag will download and overwrite existing subtitles. Default behaviour is to ignore videos that already have subtitles.
For MacOS npm installs global packages into /usr/local/lib/node_modules. You might need to run the install with sudo.
sudo npm install -g subs-cli
That might cause another problem, as npm drops the sudo privileges for packages that run scripts, and sets the user to "nobody". This will cause keytar (the package that manages the secure storage of account passwords) to not be able to install it's prebuilt native modules, as it cannot create a folder for them.
The only workarounds are to either change the ownership of node_modules dir, and install npm global packages without sudo
sudo chown -R yourusername:admin /usr/local/lib/node_modules
npm install -g subs-cli
or run the npm install command with --unsafe-perm
sudo npm install -g --unsafe-perm subs-cli
I am actively looking for a better workaround. More info here.
The code in this project is licensed under the MIT License. See LICENSE for details.
FAQs
A full featured, easy to use, CLI app to download subtitles from opensubtitles.org
The npm package subs-cli receives a total of 20 weekly downloads. As such, subs-cli popularity was classified as not popular.
We found that subs-cli 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.