Skip to content

LeeGDavis/express-list-endpoints

 
 

Repository files navigation

Express List Endpoints

Build Status codecov.io bitHound Overall Score Dependency Status

NPM

Express endpoint parser to retrieve a list of the passed router with the set verbs.

Example of use

var app = require('express')();

app.route('/')
  .all(function(req, res) {
    // Handle request
  })
  .get(function(req, res) {
    // Handle request
  })
  .post(function(req, res) {
    // Handle request
  });

app.route('/about')
  .get(function(req, res) {
    // Handle request
  });

console.log(listEndpoints(app));
/* It omits the 'all' verbs.
[{
    path: '/',
    methods: ['GET', 'POST']
  },
  {
    path: '/about',
    methods: ['GET']
}]
*/

Arguments

app - Express app or router instance

Your router instance (router) or your app instance (app).

Note: Pay attention that before call this script the router or app must have the endpoints registered due to detect them.

license

MIT

About

A express package to list all registered endoints and its verbs

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%