Concept Flow - Parsing request body (JSON and form data)
Client sends HTTP request
Server receives request
Check Content-Type header
Parse JSON body
Store parsed data in req.body
Use req.body in route handler
Send response
The server checks the request's Content-Type to decide how to parse the body, then stores the parsed data for use in the route.
