express-docu
v1.0.4
Published
record all your routes and generate HTML api documentation
Downloads
5
Readme
Express API Documentation
This NPM module will record all your routes and produces a HTML api documentation.
Requirements
To use this module you need tests. The recorder will record all requests and responses of your tests. The NPM only works with express 4.x.
Usage
var expressdocu = require('express-docu');
app.use(expressdocu.record);
// run your tests and execute
node node_modules/express-docu/generateDocs.js
TODO:
- cleanup recorded files
- cleanup output
- configureable folders
Example