0.0.2 • Published 8 years ago

react-prop-table-cli v0.0.2

Weekly downloads
6
License
MIT
Repository
github
Last release
8 years ago

react-prop-table-cli

Test coverage Build Status Dependency Status devDependency Status NPM version node License npm download

Command line tool of react-prop-table, generate React proptypes table like a boss

Installation

$ npm install -g react-prop-table-cli

Usage

ES5 Example

See ES5 source example

ES6 Example

See ES6 source example

$ proptable

  Usage: proptable [options] <file>

  Options:

    -h, --help         output usage information
    -V, --version      output the version number
    -t, --type <type>  Result type, cli default

$ proptable file.jsx
┌────────────────────┬──────────────────────────────┬────────────────────┬──────────┬────────────────────┐
│ Name               │ Description                  │        Type        │ Required │   Default Value    │
├────────────────────┼──────────────────────────────┼────────────────────┼──────────┼────────────────────┤
│ optionalArray      │ Description of               │       Array        │          │         []         │
│                    │ optionalArray.               │                    │          │                    │
├────────────────────┼──────────────────────────────┼────────────────────┼──────────┼────────────────────┤
│ optionalBool       │ Description of optionalBool. │      Boolean       │          │       false        │
├────────────────────┼──────────────────────────────┼────────────────────┼──────────┼────────────────────┤
│ optionalFunc       │ Description of optionalFunc. │      Function      │          │      () => {}      │
...

$ proptable -t markdown file.jsx
| Name | Description | Type | Required | Default Value |
| :--- | :----- | :--- | :---: | :---: |
| optionalArray | Description of optionalArray. | Array |  | `[]` |
| optionalBool | Description of optionalBool. | Boolean |  | `false` |
| optionalFunc | Description of optionalFunc. | Function |  | `() => {}` |
...

$ proptable -t html file.jsx
<table>
  <thead>
    <tr>
      <th style="text-align: left">Name</th>
      <th style="text-align: left">Description</th>
      <th style="text-align: center">Type</th>
      <th style="text-align: center">Required</th>
      <th style="text-align: center">Default Value</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td style="text-align: left">optionalArray</td>
      <td style="text-align: left">Description of optionalArray.</td>
      <td style="text-align: center">Array</td>
      <td style="text-align: center"></td>
      <td style="text-align: center"><code>[]</code></td>
    </tr>
    <tr>
      <td style="text-align: left">optionalBool</td>
      <td style="text-align: left">Description of optionalBool.</td>
      <td style="text-align: center">Boolean</td>
      <td style="text-align: center"></td>
      <td style="text-align: center"><code>false</code></td>
    </tr>
...

Test

$ npm run test
$ npm run test-cov
$ npm run test-travis

License

The MIT License (MIT)

Copyright (c) 2015 LingyuCoder

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.