Best of WebSocketDecember 2022

  1. 1
    Article
    Avatar of logrocketLogRocket·3y

    Build a real-time chat app with Rust and React

    Rust is known for its speed and reliability, while React is one of the most popular frontend frameworks for building user interfaces. In this article, we’ll demonstrate how to build a real-time chat app with Rust and React that offers functionality for chat, checking user status, and indicating when a user is typing.

  2. 2
    Article
    Avatar of bytebytegoByteByteGo·3y

    EP 39: Accounting 101 in Payment Systems

    This week’s system design refresher: Cloud Native Accounting 101 in Payments Evolution of Uber's API Layer Short/Long Polling, SSE, Websocket 17 Equations That Changed the World. What is cloud native? Below is a diagram showing the evolution of architecture and processes since the 1980s.

  3. 3
    Article
    Avatar of devtoDEV·3y

    Why Websockets are Hard To Scale?

    Websockets allow servers to push events to clients, without the need of a client request. The bidirectional nature of websockets is both a grace and a curse. Websocket is an application layer protocol, just like HTTP which is another application layer Protocol. Both protocols are implemented over TCP connection.