ajmeese7 / esdoc2

ESDoc2 - Better Documentation for JavaScript

Home Page:https://ajmeese7.github.io/esdoc2/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Coverage Status Document Coverage Status

ESDoc2

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.

Features

  • Generates good documentation.
  • Measures documentation coverage.
  • Integrate test codes into documentation.
  • Integrate manual into documentation.
  • Parse ECMAScript proposals.
  • Lots of plugins

Quick Start

# Move to your project directory.
cd your-project/

# Install esdoc2 and standard plugin.
npm install esdoc2 esdoc2-standard-plugin

# Create a configuration file.
echo '{
  "source": "./src",
  "destination": "./docs",
  "plugins": [{"name": "esdoc2-standard-plugin"}]
}' > .esdoc.json

# Run esdoc2.
./node_modules/.bin/esdoc2

# View documentation
open ./docs/index.html

Documentation

Please visit esdoc2.org to see more documentation.

Development

  1. npm run build
  2. ./out/src/ESDocCLI.js

Acknolwedgements

  • Ryo Maruyama, author of ESDoc

About

ESDoc2 - Better Documentation for JavaScript

https://ajmeese7.github.io/esdoc2/

License:MIT License


Languages

Language:JavaScript 99.1%Language:Shell 0.9%