0.0.2 • Published 9 years ago

express-route-log v0.0.2

Weekly downloads
11
License
-
Repository
github
Last release
9 years ago

Express route log

npm install express-route-log

Use to log your Express.js app routes. Nice in a dev environment, just for sanity check or whatever.

Have had the script kicking around for a while in a few projects so just getting it out there.

Supports standard route structures, nested routers, etc. Just require it in after your routes have been defined.

Optional second param is a function to use in place of console.log.

Usage

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

app.get('/', (req, res, next) => {
  //...
});

app.get('/pageOne', (req, res, next) => {
  //...
});

app.post('/pageTwo', (req, res, next) => {
  //...
});

require('express-route-log')(app);

// prints out the following:

/*
Routes:
GET /
GET /pageOne
POST /pageTwo
*/

Example output

npm.io