Eomm / fastify-overview

Build a structure graph of your Fastify application
MIT License
65 stars 6 forks source link

Filter routes #69

Closed Eomm closed 11 months ago

Eomm commented 1 year ago

You may don't want to check some routes so we could write:

Eg:

await app.register(fastifyOverview, {
  routesFilter: function (method, url, prefix) { return <boolean> },
  hideEmpty: true
})