Concept Flow - Route prefixing
Create Express app
Create Router
Define routes on Router
Use Router with prefix
App listens for requests
Request comes in
Check prefix match
Yes
Route handler runs
Send response
End
This flow shows how an Express app uses a router with a prefix to handle requests starting with that prefix.