bigtimebuddy / webdoc

Documentation generator for the web

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Logo-Frame

webdoc Example documentation

webdoc is the next generation documentation generator for the family of web languages. It supports the JSDoc notation and infers type data from TypeScript definitions.

You can checkout the documentation for example/ here!

Usage 🗞️

npm install --save-dev @webdoc/cli

To get started, create a webdoc.conf.json file in your project directory.

{
  "source": {
    "include": "src/",
    "excludePattern": "(node_modules|lib|test)"
  },
  "plugins": [
    "plugins/markdown"
  ],
  "opts": {
    "destination": "docs"
  },
  "template": {
    "repository": "<your_github_url>",
    "outputSourceFiles": false
  }
}

The only required field is source.include which tells webdoc where the source files are. @webdoc/cli's README details more configuration options

You can now run webdoc in your terminal and documentation will be generated. Be sure to serve the documentation from the folder it is generated in. If you need to serve from an ancestor directory, provide the documentation path relative to the root using the --site-root option, e.g. webdoc --site-root docs.

Packages 📦

Packages npm
@webdoc/cli npm David (path)
@webdoc/model npm David (path)
@webdoc/types npm David (path)
@webdoc/parser npm David (path)
@webdoc/externalize npm David (path)
@webdoc/template-library npm David (path)
@webdoc/legacy-template npm David (path)
@webdoc/default-template npm David (path)

Features 🎉

  • Support for JavaScript, Flow, and TypeScript. The modular structure of @webdoc/parser allows you to integrate it with other languages as well.

  • High-performance document tree that enforces proper relationships between symbols.

  • Importing external APIs to integrate your documentation

Coming soon:

  • Documentation coverage analysis

  • Powerful default template that:

    • integrates with JSFiddle & CodePen for live examples of your API
    • provides a neat and clean navigation for users
    • makes it easy to write tutorials

Development Roadmap

Contribute

Glad you asked! Open an issue and I'll get you something to work on! webdoc has an amazing potential to disrupt the stagnated documentation process!

About

Documentation generator for the web

License:MIT License


Languages

Language:JavaScript 95.2%Language:SCSS 3.2%Language:CSS 0.9%Language:TypeScript 0.3%Language:PowerShell 0.3%Language:Shell 0.1%