Concept Flow - res.render for templates
Client sends request
Express receives request
Call res.render(template, data)
Template engine processes template
Data injected into template
HTML generated
Send HTML response to client
This flow shows how Express uses res.render to process a template with data and send the resulting HTML back to the client.