Aditya Sharmablog.adityasharma.co·Sep 3, 2024Mastering WebSockets in Flutter: A Comprehensive GuideWebSockets provide a powerful way to establish a full-duplex communication channel between the client and server, allowing real-time data exchange. This is particularly useful in applications that require live updates, such as chat apps, online gamin...Babajan Khan and 1 other are discussing this2 people are discussing thisDiscuss·11 likes·28 readsWhat the FlutterFlutter
Alex PliutauforfreeCodeCampfreecodecamp.org·Aug 28, 2024How to Implement Server-Sent Events in GoServer-Sent Events (SSE) is a powerful technology that enables real-time, unidirectional communication from servers to clients. In this article, we'll explore how to implement SSE in Go, discussing its benefits, use cases, and providing practical exa...DiscussGo Language
Swami Buddha Chaitanyachaiitanyacodes.hashnode.dev·Aug 26, 2024Why Use WebSockets? Understanding Their Benefits and How to Implement ThemIntroduction In an era where instant communication and real-time updates are the norm, WebSockets have emerged as a powerful tool for enabling seamless, bidirectional communication between clients and servers. Unlike traditional HTTP, which operates ...Discusswebsockets
Sushant Pantsushantpant.com.np·Aug 25, 2024Pub-sub patternIn my previous articles, we built a messaging system using RabbitMQ. One limitation of that approach was that each message was delivered to only one consumer. For instance, if we had two consumers promotional.Email and promotional.Sms there would be ...Discuss·10 likes·121 readsDistributed SystemPubSub
Subhradip Sinhasubhjourney.hashnode.dev·Aug 22, 2024Introduction to websockets | Building a real-time chat application in Node.jsIn today’s world of live streaming, video conferencing, and remote work, latency is a major concern for users. A smooth, uninterrupted experience is crucial. Traditional HTTP, which relies on client requests, struggles to meet this demand. It's simpl...Discuss·44 likes·55 readswebsocketsReally well written blog! Eagerly waiting for the real time currently value checker 13
NiKHIL NAIRnncodes.hashnode.dev·Aug 20, 2024Understanding WebSockets: Real-Time Communication for Modern Web ApplicationsIn today's fast-paced digital world, real-time data transfer is a critical feature for many web applications. Whether it's live chat, gaming, financial services, or collaborative tools, the ability to instantly communicate between a client and a serv...DiscussJavaScript
Godswill Adigweadigwecodes.hashnode.dev·Aug 19, 2024FeaturedUnderstanding WebSocket and Socket.ioImagine you're building a real-time chat application where users need to send and receive messages instantly, without the delay of refreshing the page or constantly checking for new messages. Traditional HTTP requests would fall short here, creating ...Debajyati Dey and 1 other are discussing this2 people are discussing thisDiscuss·45 likes·142 readsNode.js
Dharm Joshidharmjoshi.hashnode.dev·Aug 11, 2024FeaturedWebRTC: The Backbone of Modern Communication SystemsSince the internet's inception, the ability to transfer data has always been evolving. In earlier times ( before the internet ), we were transfering data via cables through physical electronic waves. After that, we tend to transfer data using some pr...Discuss·24 likes·160 readsWeb Development
Anuj Kumar Upadhyayanuj1.hashnode.dev·Aug 9, 2024Real-Time Communication with WebSocketsIn today's digital landscape, real-time communication has become a critical feature for many applications, from chat systems and live notifications to collaborative tools and gaming. WebSockets provide a powerful way to implement real-time communicat...Discuss·10 likesNodejswebsockets
Alpit Kumaralpit.hashnode.dev·Aug 7, 2024Chat Application Using Web SocketScreeshot :- In traditional web communication, the client sends a request to the server, the server responds, and the connection is closed. For each new request, this process repeats, leading to multiple openings and closings of connections. This me...Discuss·1 likemachine coding round