Doxx
Doxx is a total refactoring of dox-foundation written in ES6, tranformed to ES5 with Babel, and is based on dox. It can automatically generate beautiful documentations and can further spice up your documentations using themes.
By default, Doxx uses doxx-theme-default which uses Twitter Bootstrap for the frontend framework and Prism.js for syntax highlighting.
Docs
The beautifully documentation can be found at GitHub.
Installation
# Install the module globally $ npm i -g doxx
Usage
JavaScript JavaDoc style
/** * Create an array of all the right files in the source dir * @param * @param * @param * @jsFiddle A jsFiddle embed URL * @return */ { ...}
CoffeeScript JavaDoc style
###* * Create an array of all the right files in the source dir * @param {String} source path * @param {Object} options * @param {Function} callback * @jsFiddle A jsFiddle embed URL * @return {Array} an array of string path###= ...
Notes
- Doxx supports the following variations of
@return
and@jsFiddle
:@return
,@returns
@jsfiddle
,@jsFiddle
,@JSFiddle
CLI
$ doxx --help Usage: doxx [options] Commands: cache Manages the Doxx cache. The available commands are clean and remove. Options: -h, --help Outputs usage information. -V, --version Outputs the version number. -r, --raw Outputs "raw" comments, leaving the markdown intact. -d, --debug Outputs parsed comments
Themes
Usage
With the release of 2.1.0, you are able to use different themes to spice up your documentations. To install a theme,
simply use the --theme
option followed by the name of the theme:
$ doxx --source lib --target docs --theme cayman# or $ doxx --source lib --target docs --theme doxx-theme-cayman
Notes
- The prefix
doxx-theme-
is not necessary except when publishing your own themes. - While it is still possible to use templates, I would advise you to use themes instead.
Creating Themes
If you would like to create your own themes, see doxx-theme-starter-kit.
Related
- grunt-doxx - Doxx grunt plugin automatically generates the documentation for your project.
- gulp-doxx - Doxx documentation generator for gulp.
Roadmap
3.0.0
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using gulp and mocha.
Changelog
The changes can be viewed here.
Donate
License
MIT License
Copyright (c) 2013 Francois-Guillaume Ribreau