<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Suhail M</title>
    <description>The latest articles on DEV Community by Suhail M (@suhaildevm).</description>
    <link>https://dev.to/suhaildevm</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3987696%2F69f3a167-d744-4174-b020-45f0472fb5f4.png</url>
      <title>DEV Community: Suhail M</title>
      <link>https://dev.to/suhaildevm</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/suhaildevm"/>
    <language>en</language>
    <item>
      <title>Getting Started with GoFr: A Highly Observable Go Framework</title>
      <dc:creator>Suhail M</dc:creator>
      <pubDate>Tue, 16 Jun 2026 16:12:45 +0000</pubDate>
      <link>https://dev.to/suhaildevm/getting-started-with-gofr-a-highly-observable-go-framework-3l9b</link>
      <guid>https://dev.to/suhaildevm/getting-started-with-gofr-a-highly-observable-go-framework-3l9b</guid>
      <description>&lt;p&gt;GoFr is an excellent, opinionated open-source GoLang framework built specifically to streamline the development of production-ready microservices. &lt;/p&gt;

&lt;p&gt;What makes GoFr standout?&lt;/p&gt;

&lt;p&gt;Out-of-the-box Observability : It automatically tracks structured JSON logs, OpenTelemetry traces, and Prometheus metrics without forcing you to write lines of custom boilerplate code.&lt;/p&gt;

&lt;p&gt;Built-in Features: Includes native support for gRPC, REST standards, database migrations, configuration management, and zero-config health checks perfect for Kubernetes deployments.&lt;/p&gt;

&lt;h3&gt;
  
  
  Quick "Hello World" Service
&lt;/h3&gt;

&lt;p&gt;Setting up a microservice requires minimal code setup:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
go
package main

import "gofr.dev/pkg/gofr"

func main() {
    app := gofr.New()

    app.GET("/greet", func(ctx *gofr.Context) (any, error) {
        return "Hello World!", nil
    })

    app.Run() 
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>backend</category>
      <category>go</category>
      <category>microservices</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
