Skip to content
Akshay Kumar edited this page Jul 29, 2016 · 2 revisions

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