Last active
October 4, 2017 14:57
-
-
Save chengjianhua/6a7587311887f98b99971c50ec740fd5 to your computer and use it in GitHub Desktop.
list all routes declared in express application https://github.com/expressjs/express/issues/3308#issuecomment-300957572
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function print (path, layer) { | |
if (layer.route) { | |
layer.route.stack.forEach(print.bind(null, path.concat(split(layer.route.path)))) | |
} else if (layer.name === 'router' && layer.handle.stack) { | |
layer.handle.stack.forEach(print.bind(null, path.concat(split(layer.regexp)))) | |
} else if (layer.method) { | |
console.log('%s /%s', | |
layer.method.toUpperCase(), | |
path.concat(split(layer.regexp)).filter(Boolean).join('/')) | |
} | |
} | |
function split (thing) { | |
if (typeof thing === 'string') { | |
return thing.split('/') | |
} else if (thing.fast_slash) { | |
return '' | |
} else { | |
var match = thing.toString() | |
.replace('\\/?', '') | |
.replace('(?=\\/|$)', '$') | |
.match(/^\/\^((?:\\[.*+?^${}()|[\]\\\/]|[^.*+?^${}()|[\]\\\/])*)\$\//) | |
return match | |
? match[1].replace(/\\(.)/g, '$1').split('/') | |
: '<complex:' + thing.toString() + '>' | |
} | |
} | |
app._router.stack.forEach(print.bind(null, [])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment