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, …
Author: Dejan Vujanović
In the previous post, we created a robust API that allows us to fetch articles with fields such as “title” and “content”, as well as the ability to update, create, and delete articles. In this post, we will be using the API to retrieve these articles and display them in a Flutter app, however, we will not be utilizing the API’s ability to modify articles. With the foundation of the API established, we can now turn our attention to creating …
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 …