Arya M. Pathakarya2004.hashnode.dev·Dec 15, 2024FeaturedCreating a Chat Application with Go, Gorilla WebSocket, and jQueryIn this blog, we will explore how to build a real-time chat application using Go (Golang), Gorilla WebSocket, and jQuery. Real-time chat applications require quick and seamless communication between users, and WebSockets make this possible by enablin...30 likes·110 readsGo Deep: Mastering Golang FundamentalsGo Language
Dhadve Yashnimbusnotes.hashnode.dev·Dec 20, 2024Create Your Own Chat App with GolangIn this blog we will get straight to building chat app using websockets in golang and react. If you want to learn about web sockets and how to use it in golang then read this beginners guide to ws Building chat server Main function var upgrader = web...1 likechat app based on microservicesgolang
Aadesh Gavhaneaadeshhh.hashnode.dev·Dec 20, 2024Real-Time Web Apps Simplified: EventStream vs. WebSockets (with Code Examples)Building real-time web applications often seems synonymous with WebSockets. But did you know there’s a simpler, more efficient alternative for specific use cases? Enter EventStream, also known as Server-Sent Events (SSE). In this blog post, we’ll exp...29 readseventstream
Dhadve Yashnimbusnotes.hashnode.dev·Dec 18, 2024Beginner's Guide to websockets with GolangWhat are Web Sockets? Well in simple terms its just a persistent (continuous) connection between a server and client. Unlike http connection which gets closed as soon as the query is complete. Also in websocket a communication is realtime and bidirec...1 likechat app based on microserviceswebsockets
Mohammed Sharooquesharooque.hashnode.dev·Dec 18, 2024Understanding WebSocket Handshake: Seamless Two-Way Communication for Web ApplicationsGoal: The goal of WebSocket technology is to enable browser-based applications to establish two-way communication with servers without the need for multiple HTTP connections. This approach facilitates seamless interaction between clients and servers...websockets
Arya M. Pathakarya2004.hashnode.dev·Dec 15, 2024FeaturedCreating a Chat Application with Go, Gorilla WebSocket, and jQueryIn this blog, we will explore how to build a real-time chat application using Go (Golang), Gorilla WebSocket, and jQuery. Real-time chat applications require quick and seamless communication between users, and WebSockets make this possible by enablin...30 likes·110 readsGo Deep: Mastering Golang FundamentalsGo Language
aman Jaiswalamanog.hashnode.dev·Dec 14, 2024Understanding WebSocket and its ImplementationWhat is Backend Communication? Backend communication is the unseen interaction between the server-side components of a web application. It involves the exchange of data and instructions between servers, databases, and other services to process user r...Backend Development
aman Jaiswalamanog.hashnode.dev·Dec 13, 2024Understanding Queues and Pub/Sub Systems ArchitectureEfficient task handling and communication are crucial for scalable systems. Let's explore how queues and pub/sub (publish/subscribe) models work, using real-world examples like LeetCode. Queues: Powering Task Management When a user submits a problem...#MessageQueues
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
JealousGxblog.jealous.dev·Nov 26, 2024FeaturedMastering WebSockets in Node.js: Advanced TechniquesWebSockets have emerged as a key technology for real-time web applications, enabling bidirectional communication between clients and servers over a single, persistent connection. While WebSockets are not new, their potential is still vastly underutil...14 likes·179 readswebsockets
akash javaliblog.akashjavali.com·Nov 22, 2024Real-Time Applications with WebSockets and Socket.ioIn the age of instantaneous communication and live updates, real-time applications have become an integral part of modern web development. From chat applications and collaborative tools to live sports updates and multiplayer games, real-time function...Chat Applications