Skip to content

Instantly share code, notes, and snippets.

@CatTail
Created December 6, 2016 09:22
Show Gist options
  • Select an option

  • Save CatTail/ce13a4f775a8b2877f313760d613ee67 to your computer and use it in GitHub Desktop.

Select an option

Save CatTail/ce13a4f775a8b2877f313760d613ee67 to your computer and use it in GitHub Desktop.
Get all registered routes in Express
app._router.stack // registered routes
.filter(r => r.route) // take out all the middleware
.map(r => r.route.path) // get all the paths
@CatTail

CatTail commented Dec 6, 2016

Copy link
Copy Markdown
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment