Tag: sse
Browse 4 practical software engineering resources tagged with "sse". Discover code recipes, design patterns, documentation templates, and in-depth guides to help you build, deploy, and maintain production-ready solutions involving sse. Each resource is written for engineers who ship real systems, with copy-paste examples and practical trade-offs.
Server-Sent Events
SSE lets servers push real-time updates to clients over HTTP. It is simpler than WebSockets for one-way streams like feeds and notifications.
The resources below cover SSE protocol, EventSource, reconnection, buffering, and use cases. Each guide helps you implement real-time updates with low complexity.
Every resource includes clear explanations, copy-paste code, and practical warnings. Use them to make informed decisions, avoid production pitfalls, and speed up your delivery. If you are just getting started, read the beginner-friendly articles first; if you are experienced, jump straight to the advanced patterns and architecture guides. New resources are added regularly, so bookmark this page and check back for the latest patterns.
Stream LLM Output with Server-Sent Events (SSE)
Stream LLM responses to clients in real-time using Server-Sent Events with FastAPI, OpenAI...
Server-Sent Events (SSE): One-Way Real-Time Streaming
Implement one-way real-time streaming from server to browser using Server-Sent Events. Covers...
Implement Server-Sent Events in Go for Real-Time Updates
Build a production-ready Server-Sent Events endpoint in Go with connection management, heartbeat...
Server-Sent Events with Node.js and Express
Build server-to-client push with Server-Sent Events in Node.js and Express. Covers connections,...