feat: Add Backend Architecture learning module#37
Merged
mnaimfaizy merged 1 commit intomainfrom Apr 9, 2026
Merged
Conversation
Add complete Backend Architecture module with 10 interactive sections covering backend concepts from history to modern patterns. Sections: - Introduction: Module overview with navigation to all sections - Backend Evolution: Interactive timeline from 1950s mainframes to modern containers (FORTRAN, Codd model, Web, Cloud, Docker) - Architecture Patterns: 5 patterns (Monolithic, Layered, Microservices, Event-Driven, Hexagonal) with real-world examples - Resilience Patterns: Circuit Breaker simulation, Sidecar (Envoy/Istio), Saga (Choreography vs Orchestration) - Database Theory: Interactive CAP Theorem triangle, ACID vs BASE comparison with specific database examples - API Design: 5 API generations (RPC, SOAP, REST, GraphQL, gRPC) with code examples and evolution timeline - Real-Time Communication: Webhooks, WebSockets, SSE with data flow visualizations and code examples - Observability: Three pillars (Logs, Metrics, Traces) with OpenTelemetry context and tool recommendations - Request Lifecycle: Animated 6-step request journey with latency budget visualization - Visualization Hub: Tab-based gallery of 4 interactive 2D models Interactive 2D Visualizations: - RequestJourney2D: Animated SVG pipeline of HTTP request lifecycle - CircuitBreaker2D: Live circuit breaker state machine simulation with adjustable failure rate - ArchitecturePatterns2D: 5-pattern SVG diagrams with comparison bars - APIEvolution2D: Timeline from RPC to gRPC with request/response examples Infrastructure: - Route, navigation, sidebar, theme colors (slate/zinc/stone) - Lazy-loaded page with section-based query param routing - Source reference document added to docs/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🏗️ Backend Architecture Learning Module
A complete new learning module covering backend architecture concepts — from the 1950s mainframe era to modern container orchestration — with interactive 2D visualizations, rich analogies, and real-world examples.
📋 Summary
This PR adds the 11th learning module to Code Executives: Backend Architecture — The Invisible Industrial Complex. The module transforms the dense topic of backend systems into an engaging, visual learning experience across 10 deep-dive sections and 4 interactive SVG-based 2D visualizations.
24 files changed · 5,632 lines added · 16 new files · 7 modified files
🗂️ Module Structure
📚 10 Educational Sections
🎮 4 Interactive 2D Visualizations
1. Request Journey (
RequestJourney2D.tsx)2. Circuit Breaker (
CircuitBreaker2D.tsx)3. Architecture Patterns (
ArchitecturePatterns2D.tsx)4. API Evolution (
APIEvolution2D.tsx)🔧 Infrastructure Changes
src/App.tsx/backendwithSuspenseRoutesrc/components/Header.tsxsrc/components/Sidebar.tsxslatethemesrc/shared/constants/moduleNavigation.tssrc/utils/theme.tsbackend: { primary: 'slate', secondary: 'zinc', accent: 'stone' }color schemesrc/pages/Home.tsxREADME.mddocs/Backend Concepts Explained for Visualization.md✅ Verification
npm run buildpasses with zero errorsdark:classes)anytypes📖 Content Sources
Content enriched from the source document (
docs/Backend Concepts Explained for Visualization.md) and supplemented with real-world examples, specific dates/technologies, and deeper technical mechanisms including: