Service | File | Purpose |
---|---|---|
TerminalManager | services/terminal-manager.ts | PTY lifecycle |
SessionManager | services/session-manager.ts | Session state |
BufferAggregator | services/buffer-aggregator.ts | Output batching |
AuthService | services/auth.ts | Authentication |
Technique | Implementation | Impact |
---|---|---|
Buffer aggregation | Batch every 16ms | 90% fewer messages |
Binary protocol | Magic byte encoding | 50% smaller payload |
Virtual scrolling | xterm.js built-in | Handles 100K+ lines |
Service worker | Cache static assets | Instant load |
Issue | Solution |
---|---|
CORS errors | Check server CORS config |
WebSocket fails | Verify port/firewall |
Terminal garbled | Check encoding (UTF-8) |
Build fails | Clear node_modules |