sse

Implement Server-Sent Events for real-time server-to-client HTTP updates.

Updated Jun 5, 2026
One-click install
npx skills add https://github.com/hung-phan/system-skills --skill sse
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sse
Source: https://github.com/hung-phan/system-skills/tree/main/skills/system-review/references/communication/sse
Command: npx skills add https://github.com/hung-phan/system-skills --skill sse

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill provides guidance and resources for implementing Server-Sent Events (SSE) to enable real-time, server-to-client updates in web applications, solving the challenges of traditional polling and web sockets.

Core Features & Use Cases

  • Real-time Data Delivery: Push updates to clients without them having to poll the server repeatedly.
  • HTTP Integration: Uses standard HTTP protocol for ease of implementation and compatibility with various infrastructure components.
  • Auto-reconnect: Ensures seamless user experience even when network connections are lost.

Quick Start

Use the sse skill to implement server-sent events for a live ticker on your website.

Frequently Asked Questions about sse

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I implement server-sent events for real-time server to client updates?

Server-sent events are implemented via an asynchronous HTTP communication protocol that enables servers to push event updates to web browsers without clients needing to send requests for new data.

What is the best way to push real-time updates to a web browser without polling?

Using server-sent events is the best way to push real-time updates without polling, utilizing standard HTTP protocol for asynchronous data delivery from the server directly to the client browser.

Does server-sent events support auto-reconnect when network connections are lost?

Yes, server-sent events feature auto-reconnect capabilities to ensure a seamless real-time user experience even when network connections drop during HTTP communication.

When should I use server-sent events instead of web sockets for real-time communication?

Use server-sent events when you need one-way real-time server to client updates over standard HTTP, whereas web sockets are better suited for bidirectional asynchronous communication.

Can I use server-sent events with standard HTTP infrastructure components?

Yes, server-sent events use standard HTTP protocol for ease of implementation and compatibility with various existing infrastructure components without requiring specialized setups.