Created
February 22, 2021 11:51
-
-
Save mmanishh/938eadfe6ccdb6d1773af226e343888e to your computer and use it in GitHub Desktop.
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
// list all endpoints for express app in node | |
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