Concept Flow - res.download for file downloads
Client sends request
Server receives request
res.download called with file path
Express sets headers for download
File is streamed to client
Client browser prompts to save file
Download completes or errors handled
This flow shows how Express handles a file download request by setting headers and streaming the file to the client.