<?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: SREEPATHI B</title>
    <description>The latest articles on DEV Community by SREEPATHI B (@sreepathi_b_101096367643c).</description>
    <link>https://dev.to/sreepathi_b_101096367643c</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3948478%2Ff8358948-3987-41cd-846f-968c2c73ea58.png</url>
      <title>DEV Community: SREEPATHI B</title>
      <link>https://dev.to/sreepathi_b_101096367643c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sreepathi_b_101096367643c"/>
    <language>en</language>
    <item>
      <title>GoFr: The Go Framework That Makes Microservices Actually Fun</title>
      <dc:creator>SREEPATHI B</dc:creator>
      <pubDate>Sun, 24 May 2026 03:30:57 +0000</pubDate>
      <link>https://dev.to/sreepathi_b_101096367643c/gofr-the-go-framework-that-makes-microservices-actually-fun-577f</link>
      <guid>https://dev.to/sreepathi_b_101096367643c/gofr-the-go-framework-that-makes-microservices-actually-fun-577f</guid>
      <description>&lt;p&gt;I've been exploring Go frameworks lately and stumbled across GoFr. &lt;br&gt;
Honestly, it's one of those tools that makes you wonder why you &lt;br&gt;
were doing things the hard way before.&lt;/p&gt;
&lt;h2&gt;
  
  
  The Problem It Solves
&lt;/h2&gt;

&lt;p&gt;Building microservices in Go usually means spending the first few &lt;br&gt;
hours just wiring things up — logging, tracing, database connections, &lt;br&gt;
health checks. You haven't written a single line of actual business &lt;br&gt;
logic yet and you're already tired.&lt;/p&gt;

&lt;p&gt;GoFr fixes this by giving you all of that out of the box.&lt;/p&gt;
&lt;h2&gt;
  
  
  What You Get
&lt;/h2&gt;

&lt;p&gt;The framework comes with logging, tracing and metrics built in. &lt;br&gt;
Database migrations, health checks, gRPC support, Pub/Sub, cron jobs, &lt;br&gt;
WebSockets and Swagger rendering are all included without any extra &lt;br&gt;
setup.&lt;/p&gt;
&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;It takes about two minutes to get something running:&lt;/p&gt;

&lt;p&gt;go get -u gofr.dev/pkg/gofr&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight go"&gt;&lt;code&gt;&lt;span class="k"&gt;package&lt;/span&gt; &lt;span class="n"&gt;main&lt;/span&gt;

&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="s"&gt;"gofr.dev/pkg/gofr"&lt;/span&gt;

&lt;span class="k"&gt;func&lt;/span&gt; &lt;span class="n"&gt;main&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="n"&gt;app&lt;/span&gt; &lt;span class="o"&gt;:=&lt;/span&gt; &lt;span class="n"&gt;gofr&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;New&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
    &lt;span class="n"&gt;app&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;GET&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"/greet"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;func&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;ctx&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt;&lt;span class="n"&gt;gofr&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Context&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;any&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="kt"&gt;error&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="s"&gt;"Hello World!"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="no"&gt;nil&lt;/span&gt;
    &lt;span class="p"&gt;})&lt;/span&gt;
    &lt;span class="n"&gt;app&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Run&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Visit localhost:8000/greet and it just works.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Take
&lt;/h2&gt;

&lt;p&gt;Worth checking out if you're building anything in Go. The project &lt;br&gt;
is open source and actively maintained by the team at gofr-dev. &lt;br&gt;
You can find it on GitHub at &lt;a href="https://github.com/gofr-dev/gofr" rel="noopener noreferrer"&gt;https://github.com/gofr-dev/gofr&lt;/a&gt; &lt;br&gt;
and the full documentation is at &lt;a href="https://gofr.dev" rel="noopener noreferrer"&gt;https://gofr.dev&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you want to contribute, they have a welcoming community and &lt;br&gt;
a detailed contributing guide as well.&lt;/p&gt;

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