gapidoc
v0.1.1
Published
RESTful web API Documentation Generator by cobaimelan, updated by techgaun
Downloads
118
Maintainers
Readme
gulp-apidoc
Generates a RESTful web API Documentation. Documentation at apidocjs.com
Uses the apidoc library.
How It Works
/path/api/stuff.js
:
/**
* @api {get} /user/:id Request User information
* @apiName GetUser
* @apiGroup User
*
* @apiParam {Number} id Users unique ID.
*
* @apiSuccess {String} firstname Firstname of the User.
* @apiSuccess {String} lastname Lastname of the User.
*/
Install
Install with npm
npm install --save-dev gulp-apidoc
Usage
var gulp = require('gulp'),
apidoc = require('gulp-apidoc');
gulp.task('apidoc', function(){
apidoc.exec({
src: "example/",
dest: "build/"
});
});
With options:
var gulp = require('gulp'),
apidoc = require('gulp-apidoc');
gulp.task('apidoc',function(){
apidoc.exec({
src: "example/",
dest: "build/",
debug: true,
includeFilters: [ ".*\\.js$" ]
});
});
Other options checkout.
API
apidoc(options)
options.src
Type: String
options.dest
Type: string
Default: doc/
options.debug
Type: Boolean
Default: false
options.log
Type: Boolean
Default: true
options.includeFilters
Type: Array
Default: []