express-github-docs

0.6.9 • Public • Published

Express GitHub Docs

Express Middleware for Generating Documentation from GitHub Repository.

Install

npm install express-github-docs

Usage

This is a simple usage example. It will serve files from docs directory.

var express = require('express');
var docs = require('express-github-docs');
 
var app = express();
 
app.use('/docs', docs('docs', {
    'ghUser': 'miskun',
    'ghRepo': 'express-github-docs',
    'ghDir': 'docs'
}));
 
app.listen(3000);

Readme

Keywords

Package Sidebar

Install

npm i express-github-docs

Weekly Downloads

0

Version

0.6.9

License

MIT

Last publish

Collaborators

  • miskun