Shaik Ahmad Nawazshaikahmadnawaz.hashnode.dev·Sep 18, 2023Building a Real-Time Chat in Your React and Node.js App with Socket.IOWelcome, fellow developers, to an exciting journey into the world of real-time chat! In today's digital landscape, real-time communication has become an essential component of many web applications. Whether you're building a social networking platfor...Discuss·16 likes·121 readsReact
Himanshu Kumarhimanshukrmr.hashnode.dev·Sep 18, 2023Explaining WebSockets and crafting a simple chat app using Socket.ioWhat is WebSockets? WebSocket is a protocol that enables two-way communication between a client (typically a web browser) and a server over a single, long-lived connection. It allows real-time data exchange without the overhead of traditional request...Discusswebsockets
Strawberry Labsblog.strawberrylabs.net·Sep 17, 2023Creating a Real-Time Chat Application with Socket.io: The Ultimate GuideIntroduction Creating a chat application has become a fundamental exercise for learning various programming concepts, including real-time communication, databases, and user authentication. One of the most powerful libraries for real-time web applicat...Discussrealtime
Ashish WakdeforAshish Tech Blogsnodejsawsecs.hashnode.dev·Sep 16, 2023Origin of Websocket, socket.io with practical implementation cases and challengesThis blog is written to find out the origin of websocket when there was HTTP in place. What are the limitations of HTTP and how websocket can handle those limitations? Also, we will figure out the use of the socket.io library. How socket.io is helpfu...Discusswebsockets
Dinesh Imaduwa Gamagedaminda.hashnode.dev·Sep 12, 2023WebSockets: Unleashing Enchanting Real-Time MagicWhat are WebSockets? WebSockets enable real-time, bidirectional (full-duplex) communication between clients and the server over a single, long-lived TCP connection. What does it mean by ”real-time, bidirectional( full-duplex ) communication”? This me...DiscussJavaScriptrealtime apps
fokirfokir.hashnode.dev·Sep 5, 2023Socket.io is coolDo you want anything persistent and fast? like a multiplayer game socket.io with socket.io-client does exactly that without any problem. It connects to the server probably via some socket, and makes a persistent connection with the user. Want to know...Discuss·26 readstech
Ankan Roycu8128.hashnode.dev·Sep 5, 2023Socket.io is cool as fuckDo you need a persistent fast connection? "socket.io" & "socket.io-client" dose all that for you.Discusstech
Davit Tabidzedtabidze.hashnode.dev·Aug 30, 2023Messenger Web AppBuilding a Real-Time Messenger with Flask and Socket.IO: In this guide, we'll create a real-time messenger app using Flask and Socket.IO. We'll dive into the mechanics of sockets and how they make real-time communication possible. Unveiling the Powe...DiscussChat
Snehil Chhabriasnehilchhabria.hashnode.dev·Aug 5, 2023WebSocket Demystified: Your Gateway to Real-Time CommunicationWhat exactly is a WebSocket? A WebSocket enables a user to send and receive messages to and from a server. So, in essence, this is a method of communication between Client and Server. Let's first comprehend this communication; we'll return to WebSock...DiscussJavaScript
Rohit Jangidrohitjangid.hashnode.dev·Jul 28, 2023Real time data transfer between client and server using Socket.IOThis article explains socket.io connection between client and server, the main use case and how to get started. This content is useful for the beginner as well as for the experienced developer who will create the application in a standard and organiz...Discuss·6 likes·87 readsSocketIO