rOACCT/node_modules/command-line-usagedfa0ef5da970dev
command-line-usage
README.md
![view on npm](https://www.npmjs.org/package/command-line-usage) ![npm module downloads](https://www.npmjs.org/package/command-line-usage) ![Gihub repo dependents](https://github.com/75lb/command-line-usage/network/dependents?dependent_type=REPOSITORY) ![Gihub package dependents](https://github.com/75lb/command-line-usage/network/dependents?dependent_type=PACKAGE) ![Build Status](https://travis-ci.org/75lb/command-line-usage) ![Coverage Status](https://coveralls.io/github/75lb/command-line-usage) ![js-standard-style](https://github.com/feross/standard)
command-line-usage
*Upgraders, please check the release notes.*
A simple, data-driven module for creating a usage guide.
Synopsis
A usage guide is created by first defining an arbitrary number of sections, e.g. a description section, synopsis, option list, examples, footer etc. Each section has an optional header, some content and must be of type <code><a href="#commandlineusagecontent">content</a></code> or <code><a href="#commandlineusageoptionlist">optionList</a></code>. This section data is passed to <code><a href="#commandlineusagesections--string-">commandLineUsage()</a></code> which returns a usage guide.
Inline ansi formatting can be used anywhere within section content using chalk template literal syntax.
For example, this script:
js const commandLineUsage = require('command-line-usage') const sections = [ { header: 'A typical app', content: 'Generates something {italic very} important.' }, { header: 'Options', optionList: [ { name: 'input', typeLabel: '{underline file}', description: 'The input to process.' }, { name: 'help', description: 'Print this usage guide.' } ] } ] const usage = commandLineUsage(sections) console.log(usage)
Outputs this guide:
<img src="https://raw.githubusercontent.com/75lb/command-line-usage/master/example/screens/synopsis.png" width="90%">
Some examples
Typical
A fairly typical usage guide with three sections - description, option list and footer. Code.
<img src="https://raw.githubusercontent.com/75lb/command-line-usage/master/example/screens/simple.png" width="90%">
Option List groups
Demonstrates breaking the option list up into groups. Code.
<img src="https://raw.githubusercontent.com/75lb/command-line-usage/master/example/screens/groups.png" width="90%">
Banners
A banner is created by adding the raw: true property to your content. This flag disables any formatting on the content, displaying it raw as supplied.
Header
Demonstrates a banner at the top. This example also adds a synopsis section. Code.
<img src="https://raw.githubusercontent.com/75lb/command-line-usage/master/example/screens/header.png" width="90%">
Footer
Demonstrates a footer banner. Code.
<img src="https://raw.githubusercontent.com/75lb/command-line-usage/master/example/screens/footer.png" width="90%">
Examples section (table layout)
An examples section is added. To achieve this table layout, supply the content as an array of objects. The property names of each object are not important, so long as they are consistent throughout the array. Code.
<img src="https://raw.githubusercontent.com/75lb/command-line-usage/master/example/screens/example-columns.png" width="90%">
Advanced optionList layout
The optionList layout is fully configurable by setting the tableOptions property with an options object suitable for passing into table-layout. This example overrides the default column widths and adds flame padding. Code.
<img src="https://raw.githubusercontent.com/75lb/command-line-usage/master/example/screens/option-list-options.png" width="90%">
Command list
Useful if your app is command-driven, like git or npm. Code.
<img src="https://raw.githubusercontent.com/75lb/command-line-usage/master/example/screens/command-list.png" width="90%">
Description section (table layout)
Demonstrates supplying specific table layout options to achieve more advanced layout. In this case the second column (containing the hammer and sickle) has a fixed width of 40 and noWrap enabled (as the input is already formatted as desired). Code.
<img src="https://raw.githubusercontent.com/75lb/command-line-usage/master/example/screens/description-columns.png" width="90%">
Real-life
The polymer-cli usage guide is a good real-life example.
<img src="https://raw.githubusercontent.com/75lb/command-line-usage/master/example/screens/polymer.png" width="90%">
Documentation
© 2015-21 Lloyd Brookes \<75pound@gmail.com\>. Documented by jsdoc-to-markdown.