1.0.2 • Published 1 year ago

convict-doc v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

convict-doc

converts a Convict schema into rendered documentation. At this Moment it will be rendered as a markdown table.

Perhabs in the future other formats are added.

Usage

Simply pass the Convict schema object into the renderDoc-function

import {renderDoc} from "convict-doc"

const configSchema: Convict.Schema<YourSchema>;

const documentation = renderDoc(configSchema)

console.log(documentation)