Concept Flow - req.cookies with cookie-parser
Client sends HTTP request with cookies
Express server receives request
cookie-parser middleware runs
Parse cookies from request headers
Attach parsed cookies to req.cookies
Route handler accesses req.cookies
Respond based on cookie values
This flow shows how Express uses cookie-parser middleware to read cookies from incoming requests and makes them available as req.cookies for route handlers.