{
“@context”: “https://schema.org”,
“@type”: “FAQPage”,
“mainEntity”: [
{
“@type”: “Question”,
“name”: “Socket.io vs native WebSocket API?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Socket.io adds: automatic reconnection, rooms/namespaces, fallback to long-polling, and event-based API. Native WebSocket is lower level. Use Socket.io for production โ the reconnection logic alone saves hours of work.”
}
},
{
“@type”: “Question”,
“name”: “How many concurrent WebSocket connections can Node.js handle?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “On a single 4-core server with 8GB RAM, expect 10,000-50,000 concurrent connections depending on message frequency. Socket.io with Redis clustering scales to millions across multiple servers.”
}
},
{
“@type”: “Question”,
“name”: “Do WebSockets work through firewalls and proxies?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Most modern networks allow WebSockets on port 443 (HTTPS/WSS). Socket.io falls back to long-polling if WebSocket is blocked. Use WSS (secure WebSocket) in production.”
}
},
{
“@type”: “Question”,
“name”: “How do I persist chat messages?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Store in PostgreSQL or MongoDB. Index by (roomId, timestamp) for fast retrieval. Load the last 50 messages when a user joins a room via REST API; stream new messages via WebSocket.”
}
},
{
“@type”: “Question”,
“name”: “Is there a managed WebSocket service alternative?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “Pusher, Ably, and AWS API Gateway WebSocket are managed alternatives. Higher cost but no infrastructure management. Good for small-scale or when developer time is the bottleneck.”
}
}
]
}
{
“@context”: “https://schema.org”,
“@type”: “TechArticle”,
“headline”: “How to Build a Real-Time App with WebSockets and Node.js in 2026”,
“description”: “Build a real-time chat and notification system with WebSockets, Socket.io, Node.js, and Redis Pub/Sub. Complete code with scaling strategies.”,
“url”: “”,
“datePublished”: “2026-06-30 10:05:00”,
“dateModified”: “2026-06-30 10:05:00”,
“author”: {
“@type”: “Organization”,
“name”: “TechPulse Editorial Team”,
“url”: “https://techpulsesite.com”
},
“publisher”: {
“@type”: “Organization”,
“name”: “TechPulse”,
“url”: “https://techpulsesite.com”,
“logo”: {
“@type”: “ImageObject”,
“url”: “https://techpulsesite.com/wp-content/uploads/logo.png”
}
}
}
Real-time features โ live chat, notifications, collaborative editing, live dashboards โ require a persistent connection between client and server. In 2026, WebSockets via Socket.io remains the most practical and widely deployed solution for most real-time applications. This tutorial builds a complete real-time system with scaling via Redis Pub/Sub.
๐ Table of Contents
๐ Key Takeaway
Real-time features โ live chat, notifications, collaborative editing, live dashboards โ require a persistent connection between client and server. In 2026, WebSockets via Socket.io remains the most practical and widely deployed solution for most r…
WebSockets vs SSE vs Long Polling
| Method | Bidirectional | Latency | Best For |
|---|---|---|---|
| WebSockets | Yes | ~1ms | Chat, gaming, collaborative tools |
| Server-Sent Events | No (server โ client only) | ~5ms | Live dashboards, notifications |
| Long Polling | Simulated | 100-500ms | Fallback for restricted networks |
Project Setup
mkdir realtime-app && cd realtime-app
npm init -y
npm install express socket.io ioredis cors
# Frontend dependencies
npm install -D vite
Server: Express + Socket.io
// server.js
const express = require('express');
const { createServer } = require('http');
const { Server } = require('socket.io');
const Redis = require('ioredis');
const cors = require('cors');
const app = express();
const server = createServer(app);
const io = new Server(server, {
cors: {
origin: "http://localhost:5173", // Vite dev server
methods: ["GET", "POST"]
}
});
app.use(cors());
app.use(express.json());
// Redis Pub/Sub for multi-instance scaling
const pub = new Redis({ host: 'localhost', port: 6379 });
const sub = new Redis({ host: 'localhost', port: 6379 });
// โโ Active users tracking โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
const activeUsers = new Map(); // socketId โ { userId, username, room }
// โโ Subscribe to Redis (messages from other server instances) โโ
sub.subscribe('chat', 'notifications', (err, count) => {
console.log(`Subscribed to ${count} Redis channels`);
});
sub.on('message', (channel, message) => {
const data = JSON.parse(message);
if (channel === 'chat') {
io.to(data.room).emit('message', data);
}
if (channel === 'notifications') {
io.to(data.userId).emit('notification', data);
}
});
// โโ Socket.io connection handler โโโโโโโโโโโโโโโโโโโโโโโโโโ
io.on('connection', (socket) => {
console.log(`Client connected: ${socket.id}`);
// โโ Authenticate โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
socket.on('authenticate', ({ userId, username }) => {
activeUsers.set(socket.id, { userId, username });
socket.join(userId); // join personal room for direct notifications
socket.emit('authenticated', { userId, socketId: socket.id });
console.log(`User authenticated: ${username} (${userId})`);
});
// โโ Join chat room โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
socket.on('join_room', ({ roomId }) => {
const user = activeUsers.get(socket.id);
if (!user) return socket.emit('error', 'Not authenticated');
socket.join(roomId);
activeUsers.set(socket.id, { ...user, room: roomId });
// Notify others in room
socket.to(roomId).emit('user_joined', {
userId: user.userId,
username: user.username,
roomId,
timestamp: Date.now()
});
console.log(`${user.username} joined room: ${roomId}`);
});
// โโ Send message โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
socket.on('send_message', async ({ roomId, content }) => {
const user = activeUsers.get(socket.id);
if (!user) return socket.emit('error', 'Not authenticated');
const message = {
id: `msg_${Date.now()}_${Math.random().toString(36).slice(2)}`,
userId: user.userId,
username: user.username,
content,
room: roomId,
timestamp: Date.now()
};
// Publish to Redis so ALL server instances receive it
pub.publish('chat', JSON.stringify(message));
// TODO: persist to database here
// await db.messages.create({ data: message });
});
// โโ Typing indicator โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
socket.on('typing', ({ roomId, isTyping }) => {
const user = activeUsers.get(socket.id);
if (!user) return;
socket.to(roomId).emit('user_typing', {
userId: user.userId,
username: user.username,
isTyping
});
});
// โโ Disconnect โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
socket.on('disconnect', () => {
const user = activeUsers.get(socket.id);
if (user?.room) {
socket.to(user.room).emit('user_left', {
userId: user.userId,
username: user.username
});
}
activeUsers.delete(socket.id);
console.log(`Client disconnected: ${socket.id}`);
});
});
// โโ REST API: send notification from backend โโโโโโโโโโโโโโ
app.post('/notify', (req, res) => {
const { userId, type, message } = req.body;
pub.publish('notifications', JSON.stringify({ userId, type, message, timestamp: Date.now() }));
res.json({ ok: true });
});
server.listen(3001, () => console.log('Server running on port 3001'));
Client: React + Socket.io
// hooks/useSocket.ts
import { useEffect, useRef, useState } from 'react';
import { io, Socket } from 'socket.io-client';
export function useSocket(userId: string, username: string) {
const socket = useRef<Socket | null>(null);
const [connected, setConnected] = useState(false);
const [messages, setMessages] = useState<Message[]>([]);
const [notifications, setNotifications] = useState<Notification[]>([]);
const [typingUsers, setTypingUsers] = useState<Set<string>>(new Set());
useEffect(() => {
socket.current = io('http://localhost:3001');
socket.current.on('connect', () => {
setConnected(true);
socket.current!.emit('authenticate', { userId, username });
});
socket.current.on('message', (msg: Message) => {
setMessages(prev => [...prev, msg]);
});
socket.current.on('notification', (notif: Notification) => {
setNotifications(prev => [notif, ...prev]);
});
socket.current.on('user_typing', ({ username: typer, isTyping }) => {
setTypingUsers(prev => {
const next = new Set(prev);
isTyping ? next.add(typer) : next.delete(typer);
return next;
});
});
socket.current.on('disconnect', () => setConnected(false));
return () => { socket.current?.disconnect(); };
}, [userId, username]);
const joinRoom = (roomId: string) => socket.current?.emit('join_room', { roomId });
const sendMessage = (roomId: string, content: string) =>
socket.current?.emit('send_message', { roomId, content });
const setTyping = (roomId: string, isTyping: boolean) =>
socket.current?.emit('typing', { roomId, isTyping });
return { connected, messages, notifications, typingUsers, joinRoom, sendMessage, setTyping };
}
Scaling with Redis Pub/Sub
The Redis Pub/Sub pattern in the server code allows horizontal scaling: when a message arrives on one Node.js instance, it publishes to Redis. All other instances (subscribed to Redis) receive it and emit to their connected clients. This means you can run 10 Node.js instances behind a load balancer and messages reach all users regardless of which instance they’re connected to.
# Run multiple instances
PORT=3001 node server.js &
PORT=3002 node server.js &
PORT=3003 node server.js &
# Nginx load balancer with sticky sessions (WebSocket requirement)
upstream websocket {
ip_hash; # sticky sessions - same client hits same server
server localhost:3001;
server localhost:3002;
server localhost:3003;
}
Frequently Asked Questions
Q: Socket.io vs native WebSocket API?
A: Socket.io adds: automatic reconnection, rooms/namespaces, fallback to long-polling, and event-based API. Native WebSocket is lower level. Use Socket.io for production โ the reconnection logic alone saves hours of work.
Q: How many concurrent WebSocket connections can Node.js handle?
A: On a single 4-core server with 8GB RAM, expect 10,000-50,000 concurrent connections depending on message frequency. Socket.io with Redis clustering scales to millions across multiple servers.
Q: Do WebSockets work through firewalls and proxies?
A: Most modern networks allow WebSockets on port 443 (HTTPS/WSS). Socket.io falls back to long-polling if WebSocket is blocked. Use WSS (secure WebSocket) in production.
Q: How do I persist chat messages?
A: Store in PostgreSQL or MongoDB. Index by (roomId, timestamp) for fast retrieval. Load the last 50 messages when a user joins a room via REST API; stream new messages via WebSocket.
Q: Is there a managed WebSocket service alternative?
A: Pusher, Ably, and AWS API Gateway WebSocket are managed alternatives. Higher cost but no infrastructure management. Good for small-scale or when developer time is the bottleneck.
Conclusion
WebSockets with Socket.io and Redis Pub/Sub is the proven, scalable architecture for real-time applications in 2026. The server code in this tutorial handles thousands of concurrent users on a single instance, and scales horizontally via Redis when demand grows. Start with a single instance, add Redis when you need to scale beyond one server, and only move to managed WebSocket services if operational overhead becomes a problem.
๐ You might also like
๐ Share this article




โ๏ธ Leave a Comment