August 2018
Intermediate to advanced
404 pages
11h 19m
English
// Global installationnpm install -g @digix/doxity// Local installation for a projectnpm install @digix/doxity
Once you have installed doxity, you can use it to generate documentation based on the comments provided for each function.
It is recommended to follow the general comment pattern (natspec) for all functions, which explains each function's definition.
/** * @dev Technical explanation * @param <param1_name> Description of param1 * @param <param2_name> Description of param2 */function functionName(...params...) { ...}