If you’re building a web application that requires real-time data updates, you may have considered using WebSockets or long-polling techniques to achieve this functionality. However, another option may be more suitable for certain use cases: Server-Sent Events (SSE). What are Server-Sent Events? Server-Sent Events (SSE) is a technology that enables a server to send real-time updates to a client over a single, long-lived HTTP connection. With SSE, the server pushes updates to the client as soon as they become available, …
Tag: Golang
Blogging is a great way to share your thoughts, ideas, and experiences with the world. In this article, I’ll show you how to build a simple blog app using Flutter for the front-end and Golang Fiber API for the back-end with SQLite database. Prerequisites: A Short Introduction to Golang and Fiber Go (Golang) is a statically-typed, concurrent programming language developed by Google. It was released in 2009 and has since gained popularity due to its simplicity, efficiency, and scalability. Fiber …