Better Documentation Generator For JavaScript
npm install esdoc2

!Document Coverage Status
ESDoc2 is a drop-in replacement of ESDoc, a documentation generator for JavaScript. ESDoc2 was created as the result of the original author of ESDoc refusing to add any other contributors to the project. ESDoc2 is the decentralized version, contributors and maintainers are welcome.
sh
Move to your project directory.
cd your-project/Install esdoc2 and standard plugin.
npm install esdoc2 esdoc2-standard-pluginCreate a configuration file.
echo '{
"source": "./src",
"destination": "./docs",
"plugins": [{"name": "esdoc2-standard-plugin"}]
}' > .esdoc.jsonRun esdoc2.
./node_modules/.bin/esdoc2View documentation
open ./docs/index.html
``- Ryo Maruyama, author of ESDoc