README
doc-api
A Web API documentation generator based on JSDoc and docdash template theme.
Install
$ npm install jsdoc
$ npm install api-jsdoc
Usage
In your projects package.json
file add a new script:
"script": {
"docs": "node_modules/.bin/jsdoc -c jsdoc.json"
}
Add jsdoc.json
file in your project.
{
"tags": {
"allowUnknownTags": true
},
"source": {
"include": "../js",
"includePattern": "\\.js