New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

esdoc

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

esdoc

API Documentation Generator For JavaScript

  • 0.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
48K
decreased by-3.77%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status Coverage Status

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

/**
 * this is MyClass.
 */
export default class MyClass {
  /**
   * @param {number} param this is param.
   * @return {number} this is return.
   */
  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

Keywords

FAQs

Package last updated on 19 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc