Concept Flow - Why understanding req matters
Client sends HTTP request
Express receives request
Access req object
Extract info: URL, method, headers, body
Use info to decide response
Send response back to client
This flow shows how Express gets a request, uses the req object to understand what the client wants, and then sends the right response.