Real-time Infrastructure
Velyx — Real-time delivery made simple
Add live updates, notifications, chat, and dashboards to your app — without building or scaling WebSocket servers.
Send events. We deliver them instantly.
What Velyx Handles
- •Manages live WebSocket connections
- •Routes messages to the right users
- •Instant message delivery
- •Handles thousands of users
- •Automatic scaling
- •Reliable connection health
How It Works
Just two simple steps.
1️⃣ Backend — Publish an Event
When something changes, send it to Velyx.
POST https://velyx.me/publish
x-api-key: YOUR_API_KEY
{
"topic": "notifications:user-123",
"payload": { "message": "Your order has shipped!" }
}2️⃣ Frontend — Listen for Updates
Connect once and receive updates in real time.
const ws = new WebSocket("wss://velyx.me/ws?appId=YOUR_APP_ID");
ws.onopen = () => {
ws.send(JSON.stringify({
type: "subscribe",
topic: "notifications:user-123"
}));
};
ws.onmessage = (event) => {
const data = JSON.parse(event.data);
console.log(data);
};Perfect For
Notifications
Live chat
Dashboards
Multiplayer apps
Live tracking
Collaboration tools
Real-time infrastructure shouldn’t slow you down. Build features. We handle delivery.