WebSockets are often viewed as a powerful solution for real-time, bidirectional communication, but a recent discussion suggests circumstances may arise where they aren't necessary. The article prompts consideration of alternatives like Server-Sent Events (SSE) or using traditional HTTP request/response paradigms, particularly in simpler applications. Many comments concur that while WebSockets have advantages, such as single connection management and easier state handling, they can add complexity to server-side code. Critics also point out inherent complexities and overhead with HTTP/2 that can negate its appeal for some real-time applications. The sentiment emerges that technology should not complicate what is inherently simple, advocating for a return to basics if they suffice for a given system's needs. The discussion highlights a trend toward questioning technology fads and complexity, suggesting a renewed focus on straightforward solutions.