yaag-nodejs

A package for generate api documentation

Usage no npm install needed!

<script type="module">
  import yaagNodejs from 'https://cdn.skypack.dev/yaag-nodejs';
</script>

README

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