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·174 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...40 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·210 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...216 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 ...398 readsReal Time
Taehyeong Leejsonobject.hashnode.dev·Dec 27, 2023Guide to Implementing Server-Sent Events (SSE) in JavaScript, Android, and iOS for Client-Side DevelopersOverview Server-Sent Events(SSE) can provide effective and powerful Server Push Notifications when used in conjunction with the HTTP/2 protocol. Over the years, I have successfully and frequently used SSE in production-level scenarios for various bu...11 likes·2.3K readsserver sent events
Uva Prasaathuva.hashnode.dev·Oct 15, 2023Building Real-Time ExperiencesUnraveling Polling and Its Alternatives in App Development With the Cricket World Cup in full swing, the current excitement is palpable. While this event serves as an exciting backdrop, it also presents an interesting challenge: how do we build a sys...1 like·61 readsWeb Development