Skip to content

sleuthg/express-route-viewer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

express-route-viewer

Displays the routes of an ExpressJS app in a nice human-readable format.

Install

npm install express-route-viewer

Basic Example

routeViewer = require('express-route-viewer');
var app = require('express')();
app.get('/api/test', function(req,res) { res.send('Howdy'); });
routeViewer(app);

Logs to the console...

/api/test
-- get

About

Displays the routes of an ExpressJS app in a nice human-readable format.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published