Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@freephoenix888/generate-help-of-cli-apps-in-markdown-format

FreePhoenix888100Unlicense3.0.0TypeScript support: included

Generates help messages of CLI applications in markdown format

cli, help, automation, generate, generation, markdown, cli-app, cli-application, console-app, console-application, readme, readme-generation, markdown-generation, documentation, documentation-generation, doc-generation

readme

npm Gitpod

Generates help messages of CLI applications in markdown format in markdown format

Table Of Contents

Quick Start

  • Add the following to your README.md
    <!-- CLI_HELP_START -->
    <!-- CLI_HELP_END -->
  • Allow execution of your cli utilities. For example in bash you can do it like this
    find ./dist/cli/ -name "*.js" -exec chmod +x {} \;
  • Run this javascript code `javascript import {readFileSync, writeFileSync} from 'fs'; import {generateHelpOfCliAppsInMarkdownFormat} from '@freephoenix888/generate-help-of-cli-apps-in-markdown-format';

const cliAppFilePaths = ['./dist/cli/name.js'/* You need to specify the paths here or get them from elsewhere. /]; // If you build your typescript files into dist/cli folder then you can use this code to get the paths: await glob(`./dist/cli/.js, {absolute: true}) const generatedHelpOfCliApps = generateHelpOfCliAppsInMarkdownFormat({ cliAppFilePaths, output: { writeMode: 'replace-placeholder', placeholder: { start:, end:, }, filePath:./README.md`, } });

## Bash
Run this bash script
```bash
find ./dist/cli/ -name "*.js" -exec chmod +x {} \;
cli_help=$(npx --yes @freephoenix888/generate-help-of-cli-apps-in-markdown-format --cli-app-file-paths $(find ./dist/cli/*.js) --root-header-level 2)
pattern="(<!-- CLI_HELP_START -->)[\\S\\s]*(<!-- CLI_HELP_END -->)"
replacement=$'$1\n'"${cli_help}"$'\n$2'
npx --yes replace "$pattern" "$replacement" README.md

Library

Library Usage

See Documentation for examples and API