0.3.5 • Published 7 months ago

micro-docgen v0.3.5

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

micro-docgen

Simple documentation generator for TypeScript projects.

⚠️ WIP!! Currently only supports class serialization

Example

const { Docgen } = require('micro-docgen');
const docgen = new Docgen();
const fs = require('fs');

// add source file(s)
docgen.addFiles('./src/*.ts');

// Generate json
const documentation = docgen.generate();

// write the output to docs.json
fs.writeFileSync('./docs.json', JSON.stringify(documentation, null, '\t'));
0.3.0

7 months ago

0.3.5-compat.0

7 months ago

0.3.5

7 months ago

0.3.2

7 months ago

0.3.1

7 months ago

0.3.4

7 months ago

0.3.3

7 months ago

0.2.0

2 years ago

0.1.0

3 years ago