A classic three-tier architecture diagram separating the Presentation, Application, and Data layers. Useful for explaining standard web application structure.
flowchart TD
ALB[Load Balancer] --> Node[Node.js API]
React[React Client] --> Node
Node --> Auth[Auth Middleware]
Node --> Postgres[(Postgres DB)]
Node --> Redis[(Redis Cache)]Architecture