Skip to content

Comments

Dictionary (New Word): Server-Sent Events (SSE)#280

Merged
babblebey merged 2 commits intojargonsdev:mainfrom
babblebey:word/new/server-sent-events-(sse)
Feb 16, 2026
Merged

Dictionary (New Word): Server-Sent Events (SSE)#280
babblebey merged 2 commits intojargonsdev:mainfrom
babblebey:word/new/server-sent-events-(sse)

Conversation

@babblebey
Copy link
Member

Word

Server-Sent Events (SSE)

Meaning/Definition

Server-Sent Events (SSE) is a web technology that allows a server to send automatic updates to a web browser over a single, long-lived HTTP connection. It enables real-time communication where the server pushes data to the client without the client needing to request it repeatedly.

SSE is commonly used for live notifications, news feeds, or real-time updates in web applications. Unlike WebSockets, SSE is unidirectional, meaning data flows only from the server to the client. It uses a simple event-driven model and works over standard HTTP, making it easy to implement and compatible with most browsers.

Example: A web page can listen for server updates using JavaScript like this:

const eventSource = new EventSource('/events');
eventSource.onmessage = function(event) {
  console.log('New message:', event.data);
};

This code opens a connection to the server endpoint /events and logs incoming messages automatically.

@jargons-dev jargons-dev bot added 💻via-jargons-editor This issue/PR was generated through jargons editor 📖new-word This PR is a new word contribution labels Feb 16, 2026
@vercel
Copy link

vercel bot commented Feb 16, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
jargons-dev Ready Ready Preview, Comment Feb 16, 2026 5:42pm

@babblebey babblebey merged commit 673affc into jargonsdev:main Feb 16, 2026
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

📖new-word This PR is a new word contribution 💻via-jargons-editor This issue/PR was generated through jargons editor

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant