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

  1. Client subscribes with EventSource.
  2. Your backend sends message to Telpun.
  3. 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 πŸ˜„