![Coverage Status](https://coveralls.io/repos/h13i32maru/esdoc/badge.svg)
ESDoc
CAUTION: ESDoc is super alpha version!
ESDoc is API Documentation Generator for JavaScript.
ESDoc targets at ES6 and Class-based OOP. if you want to target at ES5, might better to use JSDoc.
Demo
TODO: create more better demo.
Install
npm install -g esdoc
esdoc -h
Usage
with config file.
esdoc -c esdoc.json
with directory path
esdoc ./path/to/js/dir
Example
├── esdoc.json
└── src/MyClass.js
src/MyClass.js
export default class MyClass {
method(param){}
}
esdoc.json
{
"source": "./src",
"destination": "./esdoc",
}
exec esdoc
esdoc -c esdoc.json
open ./esdoc/index.html
Document
please visit esdoc.org to see more document.
License
MIT