Skip to content
This repository has been archived by the owner on Aug 9, 2021. It is now read-only.

Latest commit

 

History

History
30 lines (28 loc) · 1.16 KB

README.md

File metadata and controls

30 lines (28 loc) · 1.16 KB

Node2DocFX

Build status

An API documentation generator for JavaScript.
Using JSDoc to generate YAML files, using DocFX to generate site.

Installation and Usage

To install the latest version available on NPM:

npm install node2docfx

Create a node2docfx.json for your project:

{
  "source": {
    "include": ["main.js"]
  },
  "package": "package.json",
  "readme": "/README.md",
  "destination": "out"
}
  • source: determine what files Node2DocFX generates YAML for. It has exactly the same syntax with that in JSDoc.
  • package: specify the path of package.json. The package's name is used as part of the uid in generated YAML.
  • readme: specify the path of README.md. It will be copied to output along with generated YAML.
  • destination: specify the output folder. Run Node2DocFX locally
node node_modules/node2docfx/node2docfx.js node2docfx.json