express-mongoose-docs
This module will take away the pain of writing API and Data Model documentation for your Express & Mongoose based REST API. It auto-generates API documentation from the code on runtime so the documentation always stays up to date.
Installation
- Step 1 : Install
npm install express-mongoose-doc
- Step 2 : Configure
Add these lines to your app.js file
var docs = require;
Or
import docs from 'express-mongoose-doc';
Make sure the following line comes after all express middleware such as app.use(express.bodyParser());
docs; // 2nd param is optional
That's it. The Docs web page should be accessible at Your-Base-URL/apiDocs
Example: http://localhost:1337/apiDocs
Thanks to nabeel-ahmad for express-mongoose-docs (https://github.com/nabeel-ahmad/express-mongoose-docs )