absolute routes
Every route your app actually serves — pages and API — in one method-colored table.
#Usage
With a dev server running, absolute routes prints its full route table — method, path, sorted and colored by verb. --json emits the same data for scripting.
BASH
# List every route (pages + API) of a running dev server
absolute routes
# Machine-readable
absolute routes --jsonabsolute routes
$ absolute routesGET / GET /dashboard DELETE /api/account/:id POST /api/login 4 routes · my-app
#How it works
The table is read from the live server’s in-memory route list at request time, so it reflects exactly what is mounted — page routes, API routes, and plugin routes alike. The introspection endpoint is only exposed in development and is never served by a compiled production build.