JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q40450F
  • License MIT

Good Documentation Generator For JavaScript, updated for new decade

Package Exports

  • @enterthenamehere/esdoc
  • @enterthenamehere/esdoc/out/Doc/AbstractDoc
  • @enterthenamehere/esdoc/out/Doc/AbstractDoc.js
  • @enterthenamehere/esdoc/out/Doc/FileDoc
  • @enterthenamehere/esdoc/out/Doc/FileDoc.js
  • @enterthenamehere/esdoc/out/ESDoc.js
  • @enterthenamehere/esdoc/out/Factory/DocFactory
  • @enterthenamehere/esdoc/out/Parser/CommentParser
  • @enterthenamehere/esdoc/out/Parser/CommentParser.js
  • @enterthenamehere/esdoc/out/Parser/ESParser
  • @enterthenamehere/esdoc/out/Parser/ESParser.js
  • @enterthenamehere/esdoc/out/Parser/ParamParser
  • @enterthenamehere/esdoc/out/Parser/ParamParser.js
  • @enterthenamehere/esdoc/out/Plugin/PluginManager
  • @enterthenamehere/esdoc/out/Util/ASTNodeContainer.js
  • @enterthenamehere/esdoc/out/Util/ASTUtil
  • @enterthenamehere/esdoc/out/Util/ASTUtil.js
  • @enterthenamehere/esdoc/out/Util/FileManager
  • @enterthenamehere/esdoc/out/Util/FileManager.js
  • @enterthenamehere/esdoc/out/Util/InvalidCodeLogger
  • @enterthenamehere/esdoc/out/Util/InvalidCodeLogger.js
  • @enterthenamehere/esdoc/out/Util/NPMUtil.js
  • @enterthenamehere/esdoc/out/Util/PathResolver
  • @enterthenamehere/esdoc/out/Util/PathResolver.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@enterthenamehere/esdoc) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

This is an updated version of esdoc. It uses babel 7, so it can parse most modern code including TypeScript and Flow.

Please use updated plugins too. It is not compatible with original esdoc.

Main changes:

  • updated dependencies
  • updated to babel 7
  • replaced code-prettify with highlightjs
  • ecmascript-proposal plugin is now part of standard-plugin

ESDoc

ESDoc is a documentation generator for JavaScript.
Please try it out!

Features

  • Generates good documentation.
  • Measures documentation coverage.
  • Integrate test codes into documentation.
  • Integrate manual into documentation.
  • Parse ECMAScript proposals.
  • ESDoc Hosting Service

Users

And more.

Quick Start

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

# Install ESDoc and standard plugin.
npm install --save-dev @enterthenamehere/esdoc @enterthenamehere/esdoc-standard-plugin

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

# Run ESDoc.
esdoc
or
./node_modules/@enterthenamehere/esdoc

# View a documentation
open ./docs/index.html

Document

please visit esdoc.org to see more documentation.

License

MIT

Author

Ryo Maruyama@h13i32maru