Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/feature-mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ Supported deterministic mappers today:
- React Router `<Route path element>` declarations and React components in
root or nested frontend packages such as `frontend/`, `client/`, `web/`,
workspaces, and packages under `apps/` or `packages/`
- Express, Fastify, and Hono string-literal route declarations in root or
workspace Node packages
- Next.js `app/` and `pages/` routes at the repo root or inside discovered monorepo projects
- Go `cmd/*/main.go`
- Go `internal/*` packages
Expand Down Expand Up @@ -141,7 +143,9 @@ as reviewable config because they can contain provider-sensitive secrets.

Known gaps:

- no Express/Fastify/Hono route mapper yet
- Express/Fastify/Hono route mapping is conservative and does not infer
prefixes from cross-file router mounts such as `app.use("/api", router)`,
`fastify.register(..., { prefix })`, or `app.route("/api", subApp)`
- no Django route mapper yet
- Laravel route parsing is convention-based, does not execute Laravel route discovery,
and may omit prefixes applied by `Route::group(...)` wrappers
Expand Down
Loading