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);

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.6.9
    2
    • latest

Version History

Package Sidebar

Install

npm i express-github-docs

Weekly Downloads

3

Version

0.6.9

License

MIT

Last publish

Collaborators

  • miskun