惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
A
About on SuperTechFans
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 叶小钗
博客园 - 聂微东
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
量子位
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
The GitHub Blog
The GitHub Blog
B
Blog RSS Feed
T
The Blog of Author Tim Ferriss
GbyAI
GbyAI
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building Loom (Part 3): Real-Time Browser UI with SSE, Go...
Joshua Varghese · 2026-06-15 · via DEV Community
Cover image for Building Loom (Part 3): Real-Time Browser UI with SSE, Goroutines, and Channels

Joshua Varghese

This is Part 3 of my series building Loom.

👉 Missed Part 2? Read it here

Today: Building the real-time browser UI with SSE, goroutines, and channels. One request → three outputs simultaneously.

Loom

A gRPC debugging proxy. Point it at your backend, point your client at Loom, and watch every call decoded in a browser tab.

Your gRPC Client  →  Loom (:9999)  →  Your Backend (:50051)
                          ↓
                    Web Inspector
                  http://localhost:9998

Go Version License: MIT


Why

gRPC traffic is binary. Wireshark can't read it. grpcurl is great for one-off calls but you can't watch a flow. I kept running it over and over trying to understand what was happening between services.

Loom sits transparently between your client and backend. It uses Server Reflection to decode every frame on the fly — no .proto files required — and streams the results into a browser UI. You see the JSON payloads, the status codes, how long each call took, and a ready-to-copy grpcurl command to replay any of them.

What it does

  • Intercepts all four gRPC stream types — unary, server-streaming, client-streaming, bidi
  • Auto-decodes using Server Reflection (no proto…

The requirement

I wanted a browser UI that shows every gRPC call in real time. No page refresh. No polling. Just instant updates.

The challenge: One incoming gRPC request needs to go to three places at once:

  • Browser UI (SSE stream)
  • Console logs
  • Recorder for replay

Why SSE over WebSockets?

WebSockets are great for two-way communication. But I just needed server → browser.

SSE advantages:

  • Simpler protocol (just HTTP)
  • Auto-reconnection built in
  • Native EventSource API in browsers
  • Perfect for "fire and forget" updates

The hub pattern

The core insight: one goroutine that owns all client connections and broadcasts to them.

type Hub struct {
    clients      map[chan]bool  // Active connections
    broadcast    chan []byte    // Incoming messages
    register     chan chan      // New clients
    unregister   chan chan      // Leaving clients
}

func (h *Hub) Run() {
    for {
        select {
        case ch := <-h.register:
            h.clients[ch] = true
        case ch := <-h.unregister:
            delete(h.clients, ch)
            close(ch)
        case msg := <-h.broadcast:
            for ch := range h.clients {
                ch <- msg  // Send to every client
            }
        }
    }
}

How it works: Any goroutine can push to broadcast. The hub sends it to ALL connected clients. No locks. No race conditions.

Fanning out to multiple sinks

When a gRPC request comes in, I fan it out:

func (p *Proxy) handleRequest(req *Request) {
    // Same data to three places
    go p.sseHub.Broadcast(req)     // Browser UI
    go p.logger.Log(req)           // Console
    go p.recorder.Record(req)      // For replay

    // Forward to backend
    p.backend.Call(req)
}

Each sink runs in its own goroutine. If one blocks, the others keep going.

The 40KB UI file

The frontend is a single HTML file (40KB) that:

Opens an EventSource connection to /events
Listens for new gRPC calls
Renders them as cards in real time

const source = new EventSource('/events');
source.onmessage = (event) => {
    const call = JSON.parse(event.data);
    addCallCard(call);  // Render to page
};

No React. No build step. Just vanilla JS that works.

What I learned

Channels as connection managers — The hub pattern feels unnatural at first, then becomes obvious
Fan-out is trivial in Go — go func() for each sink, done
SSE is underrated — For logs, metrics, UIs, it's perfect
One file is fine — My 40KB UI never needed splitting
Performance

With 100 concurrent gRPC requests:

Component Latency added
SSE broadcast ~2ms
Logger ~1ms
Recorder ~3ms
Total overhead ~6ms
All three run in parallel thanks to goroutines.

The aha! moment

Coming from Node.js, I would've used callbacks or promises. In Go, I just wrote:

go doSomething()
go doSomethingElse()
go doAnotherThing()

And it worked. No thinking about event loops. Just concurrency.

Key takeaways

SSE > WebSockets for one-way real-time updates
The hub pattern is Go's answer to connection management
Fan-out with goroutines is trivial — don't overthink it
Single-file UIs are fine for internal tools