Mayursinh Parmarmayursinhdevblog.hashnode.dev·Sep 30, 2024Building a Real-Time Chat App in Android with Kotlin and Firebase: A Family-Friendly Guide Using Clean ArchitectureHello, devs Today, we’re creating a real-time chat application using Firebase in Kotlin and organizing our code with Clean Architecture. This guide will walk you through every step, from setting up Firebase to structuring your app with Clean Architec...DiscussAndroidAndroid
Arun K Rcollate.wiki·Jul 23, 2024How I implemented the "Jump to Message" feature in my Chat APIWhile building my small hobby project, which has a chat feature, I faced a simple issue. How do we jump to a specific message in the chat if the user clicks on the message being replied to? 🤯 Actually, I am new to the backend architecture of chat-ba...Discuss·7 likes·47 readschatapi
Ila Bandhiyaila.hashnode.dev·Jun 20, 2024Turning Data Insights into Revenue: The Role of RUM and APMIn today’s digital era, data plays a pivotal role in driving revenue and fostering business growth. Organizations increasingly rely on real-time user monitoring (RUM) and application performance monitoring (APM) to harness these insights effectively....Discuss·1 like·41 readsrealtime apps
HEMANThemantkatta.hashnode.dev·Jun 13, 2024How I Built a Real-Time Chat App in 24 Hours Using React and FirebaseIntroduction Ever wondered how fast you can build a fully functional chat app? I took on the challenge to build one in just 24 hours using React and Firebase. In this article, I'll walk you through my journey, the obstacles I faced, and how I overcam...DiscussReact
Ronit Pandaronit.dev·Jun 1, 2024How real-time sync apps actually work?Hey everyone, if you're excited after the last blog and curious about how these systems work, let's briefly discuss how they operate. IndexDB "DB of your browser" before moving forward though let's discuss a bit about indexDB, which is an inherent pr...Discuss·10 likes·124 readsBuilding RealTime WebAppsrealtime apps
Ronit Pandaronit.dev·Jun 1, 2024What is real time syncBefore jumping straight into implementation let's discuss a bit about what is this real time experience we are going to learn in this series Real time sync apps have these following properties Any interaction or mutation on the platform is instant a...Discuss·10 likes·204 readsBuilding RealTime WebAppsTypeScript
Asis Sharmaasis-sharma.hashnode.dev·Jun 1, 2024Mastering Real-Time Web Development with Laravel and WebSocketsHey there, fellow web developers! 🌟 Today, we're diving into an exciting topic that's all about making your web applications more dynamic and interactive: using Laravel with WebSockets. If you've ever wanted to create real-time features like chat ap...Discuss#devTutorial
Ronit Pandaronit.dev·Jun 1, 2024Setup "Poke"Hey everyone!, finally after setting up push and pull, we are mostly done, but there is one vital piece of the puzzle pending. Right now you can push mutations to our server and on every 60 seconds interval our client pulls and our client is in sync ...Discuss·43 readsBuilding RealTime WebAppsrealtime apps
Ronit Pandaronit.dev·Jun 1, 2024Backend Routes - "pull"Hey everyone! Let's get started with writing the pull endpoint. Before writing the actual endpoint though, let's discuss the topic that is specific to row versioning backend strategy and we skipped in the last blog CVR (Client View Record) A client v...Discuss·89 readsBuilding RealTime WebAppsTypeScript
Ronit Pandaronit.dev·Jun 1, 2024Backend Routes - "push"Backend strategies Replicache defines "push" and "pull" endpoints that your server must implement for sync to work. There are various ways to write push and pull endpoints. As the heading suggests, we will write the push endpoint in this blog. But be...Discuss·87 readsBuilding RealTime WebAppsmonorepo