About 161,000 results
Open links in new tab
  1. WebSocket - Wikipedia

    The WebSocket protocol enables full-duplex interaction between a web browser (or other client application) and a web server with lower overhead than half-duplex alternatives such as HTTP …

  2. The WebSocket API (WebSockets) - Web APIs | MDN

    Sep 9, 2025 · With this API, you can send messages to a server and receive responses without having to poll the server for a reply. The WebSocket API provides two alternative mechanisms …

  3. The Websocket Protocol | WebSocket.org

    Sep 2, 2024 · You’ll find out how to establish a WebSocket connection and exchange messages, what kind of data can be sent over WebSockets, what types of extensions and subprotocols …

  4. WebSocket and Its Difference from HTTP - GeeksforGeeks

    Aug 8, 2025 · Unlike HTTP’s request-response model, WebSockets allow real-time data exchange without repeated requests. Once established, the connection stays open until …

  5. websockets · PyPI

    websockets is a library for building WebSocket servers and clients in Python with a focus on correctness, simplicity, robustness, and performance. Built on top of asyncio, Python’s …

  6. WebSocket API Reference | WebSocket.org

    Aug 31, 2025 · The WebSocket API is an advanced technology that enables persistent, bidirectional, full-duplex communication channels between web clients and servers. Unlike …

  7. The Future of WebSockets: HTTP/3 and WebTransport

    Sep 2, 2024 · A deep dive into the evolution of WebSockets, exploring how HTTP/3 and WebTransport are redefining realtime communication on the web. Learn about new standards, …

  8. WebSockets explained: What they are and how they work

    Apr 30, 2025 · In this guide we’ll break down what WebSockets are, how they work, test their performance and help you decide if they are right for your realtime architecture.

  9. What is WebSocket and When to Use Them - DEV Community

    May 12, 2025 · What Are WebSockets? WebSockets provide a persistent, bidirectional communication channel between client and server over a single TCP connection. Unlike …

  10. Building a Web App with WebSockets | WebSocket.org

    Sep 2, 2024 · This post provides detailed, step-by-step instructions on building a realtime web app with WebSockets and Node.js - an interactive cursor position-sharing demo.