New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

react-docgen-docs

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-docgen-docs

CLI tool that extracts information from React Components using react-docgen, transforms that information into Markdown and adds it to your README file.

latest
Source
npmnpm
Version
1.0.3
Version published
Weekly downloads
4
-50%
Maintainers
1
Weekly downloads
 
Created
Source

react-docgen-docs

CLI tool that extracts information from React Components using react-docgen, transforms that information into Markdown and adds it to your README file.

Install

$ npm install --save-dev react-docgen-docs

Usage

$ rdd <componentsDir> [options]
// `rdd` is a shortcut for `react-docgen-docs`
  • Add the delimiter in your README file to indicate where you want to insert the docs

    <!-- react-component-api -->
    
  • Then add a new task in your package.json to generate the docs. Note that you must specify the path for the readme and for the components to be documented.

    "scripts": {
        "docs": "rdd src/ --readmeFile docs/README.md"
    }
    

Configuration

--readmeFile

Default: './README.md'

The path to the readme file where generated documentation is appended.

--delimiter

Default: 'react-component-api'

Use a custom delimiter. Used to let the tool know where to place the docs in your readme.

This generates <!-- react-component-api --> and <!-- react-component-api:end --> delimiters.

--ext

Default: ['.js', '.jsx']

File extensions to consider. Used by react-docgen.

--ignoreDir

Default: ['node_modules', 'bower_components']

Folders to ignore. Used by react-docgen.

FAQs

Package last updated on 02 Nov 2017

Did you know?

Socket

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.

Install

Related posts