Denuwan Kalubowiladenuwankalubowila.hashnode.dev·Jan 10, 2025Server Sent Events (SSE) with GoDuring my last vacation, I started learning about real-time communication. In my exploration process, I found Server-Sent-Events (SSE). In this article, I’ll explore how to implement SSE in Go, discussing benefits and use cases. What is a Server Sent...1 likeGo Language
Utkarshblogs.utkarshrajput.com·Jan 6, 2025Streamlined Updates: Mastering Server-Sent Events (SSE)Introduction Server-Sent Events (SSE) is a web standard that allows servers to push real-time updates to web clients over HTTP. Unlike WebSockets, SSE operates on a unidirectional stream from server to client and is built on standard HTTP, making it ...JavaScript
Ruban Sahooruban.hashnode.dev·Dec 3, 2024Design a Blogging PlatformIn this blog, we will study the factors that get affected by any system design decision. We will understand it while we design a blogging platform. We will deep dive into caching issues at scale and how to solve them, async processing, delegation, ka...System Designdatabase
Pulkitblogs.devpulkit.in·Jul 26, 2024How to Use Server-Sent Events with FastAPIDuring my recent internship, I faced a task where the server needed to run a long-running process. This couldn't be done with just a POST request because the task could take up to 15 minutes to complete. So, we needed an alternative for this use case...1 like·233 readsFastAPI
CodingShawncodingshawn.dev·Jul 1, 2024Streaming Response part 1: Server Sent Event3 methods to stream response In fact, to achieve the Streaming effect, you can use three methods: Server Sent Event (SSE) => This is the method discussed in the current article Transfer-Encoding: chunked=>You can refer to this article I wrote Webs...42 readshttp2 server push
Daniel Adesojiblog.sojidaniels.com·Jun 19, 2024Understanding Server-Sent Events (SSE) with NodejsIntroduction to Server-Sent Events (SSE) Server-Sent Events (SSE) is a standard allowing servers to push real-time updates to clients over a single, long-lived HTTP connection. This protocol is part of HTML5 and provides a simpler alternative to more...server sent events
Kanishka Chowdhurybits2bytes.hashnode.dev·Apr 7, 2024Exploring Server-Sent Events: A Real-Time Notification App in ReactWhat are Serve Sent Events (SSEs)? Server Sent Events (SSEs) is an HTML5-based technology that enables servers to send data to the web client without having to rely on explicit requests from the client. How is it different from Web Sockets or Long P...13 likes·226 readsReact
Subham Dashsubhamdash.hashnode.dev·Mar 18, 2024Server Sent Events (SSE): A Comprehensive Conceptual Deep DiveWhat is Server Sent Events (SSE)? A Server Sent Event is when a web page automatically gets updates from a server. Traditionally, a web page has to send a request to the server to receive new data, then the server will send the response to the client...28 reads#WebSocketsAlternative
Shailendra SinghforMechCloud Academyacademy.mechcloud.io·Mar 2, 2024How to troubleshoot a cross domain server-sent events connection?The Problem Few days back I was trying to troubleshoot a cross domain server-sent events (SSE) connection issue. The issue which I was facing was that the browser was not sending any preflight request which is required to validate if cross domain req...223 readsJavaScript
Sayan Biswassayanbiswas.hashnode.dev·Feb 22, 2024Implementing Real-Time Chat Messaging with NestJS, Server-Sent Events, and NestJS Event EmittersIntroduction I recently implemented a real-time chat messaging feature using NestJS, Server-Sent Events (SSE), and NestJS event emitters. This combination of technologies allowed me to create an efficient, scalable, and easy-to-maintain solution. In ...454 readsReal Time