Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
commander-help
Advanced tools
Styled Help for Commander.js
npm i commander-help
const { program } = require('commander');
const commanderHelp = require('commander-help');
program
.name('cli-name')
.description('CLI to some JavaScript string utilities')
.argument('<username>', 'user to login')
.argument('[password...]', 'password for user, if required', 'empty')
.option('-t, --title <honorific>', 'title to use before name')
.option('-d, --debug', 'display some debugging')
.version('0.8.0', '-v, --version');
program.command('split')
.description('Split a string into substrings')
.argument('<string>', 'string to split')
.alias('s')
.option('--first', 'display just the first substring', '#')
.option('-s, --separator <char>', 'separator character', ',')
.action(() => {});
program
.command('clone <source> [dest]')
.description('clone a repository into a newly created directory')
.alias('c')
.action((source, destination) => {
console.log('clone command called');
});
program
.command('start <service>', 'start named service')
.command('stop [service...]', 'stop named service, or all if no name supplied');
// hide default help
program.helpInformation = function() {
return '';
};
// custom help
program.on('--help', function() {
console.log('Usage and help');
commanderHelp(program);
});
program.parse();
Usage and help
┌──────────────────────────────────┬───────────────────────────────────────────────────┬───────┐
│ Commands/Options │ Description │ Alias │
├──────────────────────────────────┼───────────────────────────────────────────────────┼───────┤
│ ├ cli-name │ CLI to some JavaScript string utilities │ │
│ │ ├ -t, --title <honorific> │ title to use before name │ │
│ │ ├ -d, --debug │ display some debugging │ │
│ │ ├ -v, --version │ output the version number │ │
│ │ └ -h, --help │ display help for command │ │
│ ├ cli-name <username> │ user to login │ │
│ ├ cli-name [password...] │ password for user, if required (default: empty) │ │
├──────────────────────────────────┼───────────────────────────────────────────────────┼───────┤
│ ├ cli-name split <string> │ Split a string into substrings │ s │
│ │ ├ --first │ display just the first substring (default: #) │ │
│ │ └ -s, --separator <char> │ separator character (default: ,) │ │
├──────────────────────────────────┼───────────────────────────────────────────────────┼───────┤
│ ├ cli-name clone <source> [dest] │ clone a repository into a newly created directory │ c │
├──────────────────────────────────┼───────────────────────────────────────────────────┼───────┤
│ ├ cli-name start <service> │ start named service │ │
├──────────────────────────────────┼───────────────────────────────────────────────────┼───────┤
│ └ cli-name stop [service...] │ stop named service, or all if no name supplied │ │
└──────────────────────────────────┴───────────────────────────────────────────────────┴───────┘
see test/test.js
1.0.1
1.0.0
FAQs
Styled Help for Commander.js
The npm package commander-help receives a total of 2 weekly downloads. As such, commander-help popularity was classified as not popular.
We found that commander-help 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.