1.1.1 • Published 8 years ago

yaag-nodejs v1.1.1

Weekly downloads
2
License
GNU
Repository
github
Last release
8 years ago

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

  • Akshay Kumar (akshaykumar12527@gmail.com)

License

GNU

1.1.1

8 years ago

1.1.0

9 years ago

1.0.21

9 years ago

1.0.20

9 years ago

1.0.19

9 years ago

1.0.18

9 years ago

1.0.16

9 years ago

1.0.14

9 years ago

1.0.13

9 years ago

1.0.12

9 years ago

1.0.11

9 years ago

1.0.10

9 years ago

1.0.9

9 years ago

1.0.8

9 years ago

1.0.7

9 years ago

1.0.6

9 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago