What is WebSocket?
In a nutshell, WebSocket is a realtime web technology that enables bidirectional, full-duplex communication between client and server over a persistent connection. The WebSocket connection is kept alive for as long as needed (in theory, it can last forever), allowing the server and the client to send data at will, with minimal overhead.
Learn more:
When should you consider a WebSocket alternative?
WebSocket is an excellent choice for use cases where it’s critical (or at least desirable) for data to be sent and consumed in realtime or near-realtime. Examples include chat apps, multiplayer collaborative experiences, and broadcasting live traffic updates.
Learn more about WebSocket use cases
However, there is rarely a one-size-fits-all protocol: different protocols serve different purposes better than others. For example, if your app relies heavily on CRUD operations, and there’s no need for the user to react to changes quickly, HTTP is better than WebSockets. Another example - WebRTC is better than WebSockets if you want to stream audio and video data.
And the last example we’re going to mention: if you only need to push text (string) data to browser clients, and you never expect to require bidirectional communication, then you could use something like Server-Sent Events (SSE). Compared to WebSockets, SSE is less complex and demanding, and easier to scale. This makes it better than WebSockets for this use case.
Five alternatives to the WebSocket protocol
We’ll now look at five alternatives to the WebSocket protocol - somewhat similar technologies that you can use to build realtime apps.
Server-Sent Events
Server-Sent Events (SSE) is an HTTP server push technology. The idea is simple: a browser client can subscribe to a stream of events generated by a server, receiving updates whenever a new event occurs.
Server-Sent Events advantages
Built-in support for reconnections.
Supported by all modern browsers.
Lightweight protocol.
Server-Sent Events disadvantages
It’s mono-directional; only the server can push data to the client.
You can only have six concurrent SSE connections per browser at any one time.
It only supports UTF-8 text data; SSE can’t handle binary data.
SSE is a good choice for scenarios where you don’t need two-way messaging, such as streaming live score updates. For use cases where you need bidirectional communication, WebSocket is the better option.
Long polling
Long polling is a client-pull technology that takes HTTP request/response polling and makes it more efficient. In long polling, the server elects to hold a client connection open for as long as possible, and delivers a response when new data becomes available or if a timeout threshold is reached.
Long polling advantages
Long polling is implemented on the back of XMLHttpRequest, which is near-universally supported by devices, so there’s usually little need to implement any fallbacks.
In cases where exceptions must be handled though, or where a server can be queried for new data but does not support long polling (let alone other more modern technology standards), basic polling can sometimes still be of limited use, and can be implemented using XMLHttpRequest, or via JSONP through simple HTML script tags.
Long polling disadvantages
Long polling is more resource intensive on the server than WebSockets.
Long polling can come with a latency overhead because it requires several hops between servers and devices.
Reliable message ordering can be an issue.
Long polling is an early precursor to WebSockets. When it comes to building high-performance, low latency realtime apps, WebSocket is a superior choice in almost every way. That’s not to say that long polling is obsolete; there are certain environments such as corporate networks with proxy servers that block WebSocket connections. In such scenarios, long polling is useful as a fallback mechanism for WebSockets.
MQTT (Message Queuing Telemetry Transport) is a publish-subscribe messaging protocol dating back to 1999, when IBM’s Andy Stanford-Clark and Cirrus Link’s Arlen Nipper published the first iteration.
In an MQTT architecture, we have:
Publishers (producers) and subscribers (consumers). Note that a publisher can also be a subscriber.
A broker which acts as the middleware MQTT server that manages the exchange of messages between publishers and subscribers.
MQTT advantages
Lightweight protocol that’s ideal for networks with limited bandwidth or unpredictable connectivity, and devices with limited CPU, memory, and battery life.
Reliable protocol, with three different levels of data delivery guarantees: 0 (at most once delivery), 1 (at least once delivery), and 2 (exactly-once delivery).
Bidirectional and flexible - it provides one-to-one, one-to-many, and many-to-many communication.
MQTT disadvantages
Not a good choice for sending photos, video, or audio data.
You can’t send MQTT messages to a browser, because web browsers don’t have MQTT support built-in.
The base MQTT protocol doesn’t use encrypted communication. Some MQTT brokers allow you to use MQTT over TLS for enhanced security, but this leads to increased CPU usage, which may be a problem for constrained devices.
Due to being lightweight by design, MQTT is better than WebSockets for many IoT use cases, such as collecting data from temperature or pressure sensors in realtime. However, as previously mentioned, MQTT can’t directly send messages to a browser. That’s why WebSocket is often used as a transport for streaming MQTT data to browser clients (MQTT over WebSockets).
WebRTC
Web Real-Time Communication (WebRTC) is a framework that enables you to add realtime communication (RTC) capabilities to your web and mobile applications. WebRTC allows the transmission of arbitrary data (video, voice, and generic data) in a peer-to-peer fashion.
WebRTC advantages
Strong security guarantees, as data transmitted over WebRTC is encrypted and authenticated with the help of the Secure Real-Time Transport Protocol (SRTP).
Open-source and free to use.
Platform and device-independent; a WebRTC application will work on any browser that supports WebRTC, irrespective of operating systems or the types of devices.
WebRTC disadvantages
Even though WebRTC is a peer-to-peer technology, you still have to manage and pay for web servers. For two peers to “talk” to each other, you need to use a signaling server to set up, manage, and terminate the WebRTC communication session.
WebRTC can be extremely CPU-intensive when dealing with video content and large groups of users.
It’s hard to get started with WebRTC. There are plenty of concepts to explore and master: its various interfaces, codecs, network address translations (NATs) & firewalls, UDP (the main underlying communications protocol used by WebRTC), and many others.
WebRTC is primarily designed for streaming audio and video content (over UDP), and will generally be a better choice than WebSockets in such scenarios. On the other hand, WebSocket is a better choice when data integrity (guaranteed ordering and delivery) is crucial, as you benefit from the underlying reliability of TCP.
Oftentimes, WebRTC and WebSocket are complementary technologies. WebRTC peers coordinate communication through a process called signaling. It’s important to note that WebRTC does not provide a standard signaling implementation, allowing developers to use different protocols for this purpose. The WebSocket protocol is often used as a signaling mechanism for WebRTC applications.
WebTransport
WebTransport is a nascent realtime technology offering client-server messaging over HTTP/3. There are two key WebTransport concepts:
Datagrams. A datagram is a self-contained packet of data that can arrive in any particular order. Designed for use cases that require low latency, and where best-effort data transmission is good enough.
Streams. The Streams APIs provide reliable, ordered data transfer. Note that you can create both unidirectional and bidirectional streams.
WebTransport advantages
By using the Datagrams API, or via multiple Streams API instances, you don’t have to worry about head-of-line blocking.
Establishing new connections is very fast - this is because HTTP/3 uses QUIC under the hood; a QUIC handshake is known to be faster than starting TCP over TLS.
WebTransport disadvantages
WebTransport is still an emerging technology. As of November 2022, WebTransport is a draft specification with W3C, and there’s always a chance that aspects related to how it works may change.
WebTransport is not yet supported by all browsers. For example, you can’t use WebTransport in Firefox and Safari.
Unlike the other WebSocket alternatives we’ve covered in this article (which are well established technologies that have been around for a while), WebTransport is more of a potential future alternative to WebSockets. We don’t know how it will evolve in the coming years, how likely developers are to adopt it, or what pitfalls it might have when used in a production-ready system. In comparison, WebSocket has been around for over a decade; it’s a robust, stable technology, with a large and active community, which currently makes it a superior alternative to WebTransport.
WebSocket and its alternatives: Head-to-head comparison
The table below shows the major differences and similarities between WebSocket and the alternative realtime technologies we’ve covered in this article.
Criteria | WebSockets | Long polling | SSE | MQTT | WebRTC | WebTransport |
---|---|---|---|---|---|---|
Underlying protocol | TCP | TCP | TCP | TCP | UDP, TCP | QUIC |
Bidirectional? | Yes | No | No | Yes | Yes | Yes |
Latency | Low | High | Low | Low | Low | Low |
Bandwidth | Low | High | Low | Low | High | High |
Browser support | Widely supported | Widely supported | Widely supported | Browsers don’t have built-in support for MQTT | Not supported by Internet Explorer and Opera Mini | Limited support |
Ease of use | Moderate | Easy | Easy | Moderate | Difficult | Easy |
Maturity | Mature tech | Mature tech | Mature tech | Mature tech | Mature tech | Emerging tech |
Data integrity | High | Moderate | High | High | High | High |
Scalability | High | Moderate | High | High | Low | High |
What is it used for? | Realtime communication between server and client. | Client-initiated communication for realtime updates. | One-way data flow (server push). | Lightweight messaging protocol for IoT and M2M communication. | Peer-to-peer communication for realtime audio and video streaming. | Multiplexed transport protocol for low-latency web communication. |
Using multiple protocols to deliver realtime experiences
We hope you’ve found this article helpful as a starting point for discovering potential alternatives to WebSockets. However, the reality is that many production-ready realtime systems don’t use just one protocol, but a mixture of protocols.
For example, if you’re developing a video conferencing solution, WebRTC is a great option for sending audio and video data between peers. In this scenario, WebSocket complements WebRTC, and is frequently used as a signaling mechanism for WebRTC peers.
Another example: due to its lightweight design, MQTT is an excellent choice for collecting telemetry data from IoT sensors. However, if you want to use this data to power realtime dashboards that can be monitored in a browser, MQTT is unsuitable, as it’s not supported in browsers. What you can do is send the data to browsers over WebSockets. That’s why many MQTT brokers nowadays also support WebSockets (or MQTT over WebSockets).
If you do decide to use WebSockets as the primary transport protocol for your use case, you still need to consider supporting fallback transports, as certain environments block WebSocket connections (e.g., restrictive corporate networks). SSE and long polling are often used as fallbacks for WebSockets.
Ably, the multi-protocol realtime platform that works reliably at any scale
Ably is a realtime experience infrastructure provider. Our APIs and SDKs help developers build and deliver realtime experiences without having to worry about maintaining and scaling messy realtime infrastructure.
Key Ably features and capabilities:
Pub/sub messaging with rich features such as message delta compression, automatic reconnections with continuity, user presence, message history, and message interactions.
Multi-protocol capabilities. The Ably protocol is WebSocket-based, but we also support long polling as a fallback, SSE, MQTT, AMQP, STOMP, and HTTP/REST.
A globally-distributed network of datacenters and edge acceleration points-of-presence.
Guaranteed message ordering and delivery.
Global fault tolerance and a 99.999% uptime SLA.
< 50ms round-trip latency (P99).
Dynamic elasticity, so we can quickly scale to handle any demand (billions of messages sent to millions of pub/sub channels and client connections).
Explore our documentation to find out more and get started with a free Ably account.
Recommended Articles
The challenge of scaling WebSockets [with video]
Scaling WebSockets in production can be challenging in terms of load balancing, fallbacks, and connection management. Here's how to tackle it and scale WebSockets efficiently.
Pros and cons of WebSockets
Discover the advantages and benefits WebSocket brings to the table, as well as its disadvantages and limitations.
What are WebSockets used for?
Learn the answers to questions like: What kind of use cases are WebSockets best suited for? Which companies use WebSockets in production?