KORLA GOUTHAMkorla.hashnode.dev·Jan 12, 2025AWS S3 Encryption CLIHello Machas ❗❗❗ 👋, In this blog I would like to cover every thing on , how S3 Encryption works and what are different types of encryption does S3 allow. When you upload an object to an S3 bucket, S3 automatically encrypts it before storing it in th...10 likesAWS_S3aws s3 encryption
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
Panth Patelhow-is-my-backend.whiteloves.in·Dec 11, 2024A Guide to Node.js Generic Routing Systemhttps://jsr.io/@panth977/routes gives you a cool design system to set up your routes, with support for Middleware, HTTP (req, single res), and SSE. But keep in mind, this package isn't meant to serve your routes! For that, you'll need https://jsr.io/...http
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
Sandip Debsandipdeb.hashnode.dev·Nov 28, 2024Real-Time Data Streaming in React with Server-Sent Events (SSE)In the world of modern web apps, real-time updates have become a necessity. Whether it's live notifications, chat applications, or dashboards, real-time data enriches user experience. In this post, I’ll walk you through implementing Server-Sent Event...51 readsReact
志晨 韩blog241102.hashnode.dev·Nov 2, 2024在浏览器和nodejs中使用eventsource实现长连接EventSource 接口是 web 内容与服务器发送事件通信的接口。 一个 EventSource 实例会对 HTTP 服务器开启一个持久化的连接,以 text/event-stream 格式发送事件,此连接会一直保持开启直到通过调用 EventSource.close() 关闭。 在我的本地示例中: 前端我使用vite启动了一个网页服务器,地址是http://localhost:5173。 服务端我使用express启动了一个后端服务器,地址是http://localhost:8888。 ...SSE
Brijesh Pandeywebsimplified.in·Oct 17, 2024WebSockets vs. Server-Sent Events (SSE) vs. WebRTCIn today’s fast-paced digital world, real-time communication is a key component of many web applications. Whether it's live messaging, notifications, or video calls, delivering instant updates and responses can make or break user experience. To achie...31 likes·400 readsWeb Development
Kim Nakyeongnakkim.hashnode.dev·Aug 6, 2024Server-sent events(SSE): 오지 않는 이벤트, 빈 문자열 처리문제: event 필드만 전송할 경우 처리되지 않음 결론: EventSource는 데이터 필드가 비었을 경우 메시지를 처리하지 않음 일단 SSE 정의부터 간단하게 알아보자. SSE는 서버 푸시 기술로, 클라이언트가 아닌 서버가 통신을 시작하는 통신 방법이다. 주로 연속적인 데이터 스트림을 브라우저 클라이언트로 보내는 데 사용된다. 클라이언트에서 EventSource 객체를 이용하여 연결을 설정하면, 서버에서 text/event-stream ...Server-sent evnets
Coder of the Cellarcoderofthecellar.hashnode.dev·Aug 5, 2024The not-so-obvious parallelism inside CPUsSince the advent of multi-cores x86 CPUs more than 20 years ago, everybody knows that they can do multiple things at once - true multi-tasking instead of the time-slicing trickery - but there are other forms of parallelism that are present, for a lon...62 readscpu
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