Generates automatically formatted help text for meow-based CLI applications. v4.0.0 is the current stable release, with moderate release cadence. Key differentiators: it provides a simple declarative API to generate help text by specifying commands, flags, examples, and optional header/footer, avoiding manual formatting. It integrates tightly with meow and requires meow as a peer dependency.
npm install cli-meow-helpVerified import paths — ran on the pinned version, not inferred.
Demonstrates basic usage of cli-meow-help with meow: defines commands and flags, generates help text, and passes it to meow().
Switch to import statement: import meowHelp from 'cli-meow-help'
Remove the 'defaults' option from meowHelp() call.
Omit 'desc' if not needed, or pass as string.
Run: npm install meow
Replace const meowHelp = require('cli-meow-help') with import meowHelp from 'cli-meow-help'Run: npm install meow
Remove the 'defaults' key from the options object passed to meowHelp().