akshaykumar12527 / yaag-nodejs

yet another apiDoc generator for nodejs web app
https://akshaykumar12527.github.io/yaag-nodejs/
GNU General Public License v3.0
8 stars 2 forks source link

yaag-nodejs

under development

NPM version Downloads Build Status Build status Coverage Status

Installation

$ npm install yaag-nodejs

Usage

Use with default options

var docGenerator = require('yaag-nodejs');
var app = require('express')();
var bodyParser = require('body-parser');
app.use(bodyParser.urlencoded({
    extended: true
}));
app.use(bodyParser.json());
app.use(docGenerator());

Use with custom options

var docGenerator = require('yaag-nodejs');
var app = require('express')();
app.use(docGenerator());
var bodyParser = require('body-parser');
app.use(bodyParser.urlencoded({
    extended: true
}));
app.use(bodyParser.json());
app.use(docGenerator({
    on: true,
    baseUrls: {
        Production: 'http://yaag-nodejs.com'
    },
    docTitle: 'Yaag API',
    docPath: '/yaagDocs'
}));

Screenshots

API doc generated with default options

alt first

API doc generated with custom options

alt first

Contributors

License

GNU