Real-time is powerful. But setting it up? Ugh.
WebSocket servers. Pub/sub infra. Authentication layers. Fallbacks. Boilerplate. You just want to send an event and see it show up on the client. Simple as that. Thatβs why we built Telpun.
π What Telpun gives you
- Zero setup β Just send an HTTP request to publish events.
- Instant delivery β Clients subscribe with EventSource. No WebSocket headache.
- MVP-friendly β Build realtime apps without realtime infra.
- Language agnostic β Works with PHP, Go, Python, Laravel, Node, etc.
- Works anywhere β Serverless, VPS, shared hosting.
π οΈ Built for developers who move fast
Perfect for:
- Live dashboards
- Real-time notifications
- Chat apps or game lobbies
- IoT/sensor data feeds
π¬ How it works
- Client subscribes with EventSource.
- Your backend sends message to Telpun.
- Telpun handles delivery, scaling, and connections.
Listen to a topic (frontend):
const source = new EventSource('https://telpun.com/hub?key={subscriberkey}&topics=notification');
source.addEventListener('notification', e => {
let data = JSON.parse(e.data)
if (data.action === 'new') {
console.log('New notification:', data.payload.text)
}
})
//you can subscribe to multiple event with comma sparated (notification,chat,test)
Send a message to specific topic and action (backend):
curl -X POST https://telpun.com/hub?key={publisherkey} \
-H "Content-Type: application/json" \
-d '{
"topic": "notification",
"action": "new"
"data": { "text": "Hello, world!" }
}'
β¨ Focus on building, not plumbing
Telpun handles:
- Connection management
- Event delivery
- Scaling
- Developer happiness π