1.0.3 • Published 8 years ago
readme-auto v1.0.3
README Generator

Auto-generate a beautiful README for a project based on its code comments.
This very README was generated from readme-generator! Supports any language that uses star comments.
Installation
npm i -g readme-autoAPI
generate.js
generate [command]
Generate a README using any child code files of the current directory.
Usage
generate -m "<mainFile.js>" [ -i <ignore dir> ]Options
--mainFile
Alias: -m Type: string Required: true
The relative location of the main file to your code. This will be the file whose code comments supply application metadata.
--ignore
Alias: -i Type: string Required: false
Ignore a code file or a set of code files within a directory when creating the README. For example:
generate -m mainFile.js -i node_modulesWould create documentation in the README for all files in the current directory and child directories EXCEPT anything in node_modules.