
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.
command-line-docs
Advanced tools
Generate markdown documentation based on your [command-line-application](https://github.com/hipstersmoothie/command-line-application) command definitions
Generate markdown documentation based on your command-line-application command definitions
npm i -D command-line-docs
# or
yarn add -D command-line-docs
This package support both the Command and MultiCommand from command-line-application.
import { Command } from 'command-line-application';
import docs from 'command-line-docs';
const echo: Command = {
name: 'echo',
description: 'Print a string to the terminal',
options: [
{
name: 'value',
type: String,
defaultOption: true,
description: 'The value to print',
},
],
};
console.log(docs(echo));
This will output:
# `echo`
Print a string to the terminal
## Options
| Flag | Type | Description |
| ----------- | ------ | ------------------ |
| \`--value\` | String | The value to print |
Control the header depth.
// Now the docs will start with an h2 instead of an h1
docs(echo, { depth: 1 });
You might want to include the global options in each sub-command's options table. To do this use the includeGlobalOptionsForSubCommands option.
docs(echo, { includeGlobalOptionsForSubCommands: true });
FAQs
Generate markdown documentation based on your [command-line-application](https://github.com/hipstersmoothie/command-line-application) command definitions
We found that command-line-docs 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.