Is it possible to get the list of all the routes in Hono framework?

130 views Asked by At

I need to get list of all the registered routes in Hono, similar to the one that Hapi's table() API or Fastify plugin fastify-print-routes.

Is there any internal API I can use to get this information? I cannot find anything from the official documentation!

1

There are 1 answers

0
Amanda On BEST ANSWER

The hono/dev package has a showRoutes function that will log the routes to console. Hono documentation

It also has an inspectRoutes that's not in the documentation, but is used to generate the info in showRoutes. It returns the information you're looking for (path, method). Source code