Krystie
5da1e572a1
refactor(server): Complete Phase 2.1 - Split monolithic server.js
MASSIVE REFACTOR:
- Created src/app.js (17KB) - Express setup, middleware, routes
- Slimmed server.js from 1997 lines → 230 lines (88% reduction!)
- Backed up original as server-old.js for reference
NEW STRUCTURE:
src/
├── app.js (Express application factory)
├── config/ (paths, site config, constants)
├── context/ (DI container, domain modules)
└── utils/ (http, logging, responses, async-handler)
STATS:
- Old server.js: 1997 lines (monolith)
- New server.js: 230 lines (entry point only)
- Modular code: 1729 lines across 14 files in src/
- Total reduction: 88% in main file
server.js now ONLY handles:
- App creation
- License loading
- HTTP server startup
- Feature module initialization
- Graceful shutdown
All business logic moved to src/ modules. Clean, testable, maintainable.
Phase 2.1 COMPLETE ✅
2026-03-29 19:46:41 -07:00
..
2026-03-23 13:42:22 -07:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 16:50:24 -07:00
2026-03-29 18:53:03 -07:00
2026-03-23 14:25:22 -07:00
2026-03-29 19:46:41 -07:00
2026-03-05 02:26:12 -08:00
2026-03-28 18:54:39 -07:00
2026-03-23 13:39:05 -07:00
2026-03-05 02:26:12 -08:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-28 18:54:39 -07:00
2026-03-23 10:47:15 +01:00
2026-03-23 14:17:25 -07:00
2026-03-28 18:54:39 -07:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-07 03:11:35 -08:00
2026-03-29 18:46:02 -07:00
2026-03-28 19:01:24 -07:00
2026-03-29 18:46:02 -07:00
2026-03-05 02:26:12 -08:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 14:17:25 -07:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-28 18:54:39 -07:00
2026-03-05 02:26:12 -08:00
2026-03-22 11:00:25 +01:00
2026-03-23 17:40:18 -07:00
2026-03-05 02:26:12 -08:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-28 19:01:24 -07:00
2026-03-23 14:25:22 -07:00
2026-03-29 19:46:41 -07:00
2026-03-29 19:46:41 -07:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-23 10:47:15 +01:00
2026-03-14 23:01:20 -07:00