Fastest & Simplest way to write a REST Api in Golang

IntroductionWhen embarking on a new project, there are times when you need to quickly set up a functional RESTful API without getting bogged down by complex business logic. Whether you’re prototyping a new idea or building a straightforward service, ha…


This content originally appeared on Level Up Coding - Medium and was authored by Mundhraumang

Introduction

When embarking on a new project, there are times when you need to quickly set up a functional RESTful API without getting bogged down by complex business logic. Whether you’re prototyping a new idea or building a straightforward service, having a streamlined process for creating a REST API can significantly accelerate your development workflow.

In this article, I’ll show you the fastest and simplest way to build a fully functional REST API in Golang using GoFr, our powerful yet user-friendly framework. GoFr offers a range of features designed to simplify REST API development, allowing you to focus on your application’s core functionality.

GoFr: A Simplified Golang Framework

GoFr is a modern web framework for Golang that prioritizes simplicity, ease of use, and developer productivity. It’s designed with an opinionated approach to streamline the process of building robust web applications and RESTful APIs. GoFr understands today’s applications requirement, be it multiple databases integration, having robust tracing as well as metric collection, well organized structured logs, support of different auth mechanisms, feature rich inter-service communications, pub-sub support and many more, GoFr has all of it under one roof.

With GoFr, you don’t need to piece together numerous modules or libraries to create a production-ready application. The framework comes equipped with all the essential tools and features necessary for developing a high-quality, production-grade application. By using GoFr, you gain a framework that provides stability, observability, and the core functionalities needed to focus on your business logic, allowing you to leave the complexities of infrastructure and operational concerns to the framework itself.

Feel free to visit the Github Repository as well as quick start guide to start exploring and playing around with GoFr.

GoFr’s AddRESTHandlers: A Rapid API Development Tool

In GoFr, the AddRESTHandlers method is a powerful feature designed to streamline the creation of RESTful APIs. With just a few lines of code, you can quickly set up a fully functional REST API based on your Go structs. This method is particularly useful for rapidly prototyping applications or for cases where you need to build APIs with minimal custom logic.

The GoFr’s AddRESTHandlers primarily works with MySQL Database making it a good to go point for starting the project. Users can always override the default handlers to implement their custom logic for CRUD and I will show how it can be done in the example below.

Use Cases:

  • Rapid Prototyping: When you need to quickly create a proof-of-concept or prototype, AddRESTHandlers can help you get up and running with minimal effort.
  • Simple APIs: For applications that require basic CRUD (Create, Read, Update, Delete) operations, AddRESTHandlers provides a straightforward and efficient solution.
  • Data-Driven Applications: If your application relies heavily on data, AddRESTHandlers can help you manage and expose that data through a RESTful API.

Why SQL is a good choice?

SQL databases are among the most widely used database systems due to their robustness, support for complex queries, and widespread adoption. It’s a beginner-friendly option that provides a clear and structured way to interact with databases. According to recent surveys, SQL databases like MySQL and PostgreSQL are consistently ranked among the most popular databases in the industry. This popularity ensures a wealth of resources, community support, and tools available for working with SQL databases.

Simplified REST API Creation

The core idea behind AddRESTHandlers is to reduce the amount of boilerplate code required for implementing CRUD operations. All you need to provide is a struct that represents your data model, and AddRESTHandlers will generate the necessary handlers to interact with your database. Here’s how it works:

  • Define Your Struct: Create a Go struct that represents the data model for your API. This struct will be used to define the fields of your database table and to specify any additional constraints.

Example: Simple Go struct representing a User.

type userEntity struct {
Id int `json:"id"`
Name string `json:"name"`
Age int `json:"age"`
IsEmployed bool `json:"isEmployed"`
}
  • Establish a Database Connection: Ensure that your application is connected to MySQL/Postgres database. GoFr handles the interaction with the database based on the struct you provide. For a quick guide on connecting to a MySQL database in GoFr, refer to this guide.
  • Call AddRESTHandlers: Use the AddRESTHandlers method to automatically generate the CRUD operations for your struct. This method sets up the routes and handlers needed to create, read, update, and delete records.

Adding Constraints with SQL Tags:

You can customize the behaviour of your API endpoints by adding SQL tags to your struct fields. These tags allow you to specify constraints like auto_incrementand not null.

For example:

type User struct {
ID int `json:"id" sql:"auto_increment"`
Name string `json:"name" sql:"not null"`
Email string `json:"email"`
CreatedAt time.Time `json:"createdAt"`
}

In this example, the ID field is set to auto-increment, and the Name field is marked as not-null, helping you enforce database constraints directly through your struct definitions.

Using AddRESTHandlers in GoFr: A Practical Example

In this section, we’ll demonstrate how to quickly set up a RESTful API using GoFr’s AddRESTHandlers method. We’ll walk through a complete example that includes defining a data model, setting up the database, registering the handlers, and incorporating migrations.

package main

import (
"gofr.dev/examples/using-add-rest-handlers/migrations"

"gofr.dev/pkg/gofr"
)

type user struct {
Id int `json:"id"`
Name string `json:"name"`
Age int `json:"age"`
IsEmployed bool `json:"isEmployed"`
}

// GetAll : User can overwrite the specific handlers by implementing them like this
func (u *user) GetAll(c *gofr.Context) (interface{}, error) {
return "user GetAll called", nil
}

func main() {
// Create a new application
a := gofr.New()

// Add migrations to run
a.Migrate(migrations.All())

// AddRESTHandlers creates CRUD handles for the given entity
err := a.AddRESTHandlers(&user{})
if err != nil {
return
}

// Run the application
a.Run()
}

Explanations:

  • Define Your Struct: The user struct represents the data model for our API. It includes fields that map to columns in the database. The sql tags specify constraints like auto_increment and not_null, which are used by GoFr to generate appropriate SQL queries.
  • Custom Handlers: The GetAll method demonstrates how to override the default GetAll handler. This method will be used in place of the default handler for retrieving all users. It allows you to implement custom logic if needed.
  • Database Connection: The database connection is automatically handled by GoFr after user provides the necessary env variables in the config file. For this example, here is how the config file looks like for connecting to MySQL database
DB_HOST=localhost
DB_USER=root
DB_PASSWORD=password
DB_NAME=test
DB_PORT=2001
DB_DIALECT=mysql
  • Apply Migrations: The app.Migrate method applies database migrations to set up the schema. You can define your migrations in the migrations package. This ensures that your database tables and schema are created or updated as needed before the server starts. Please refer here to know more about data migrations in GoFr.
  • Register REST Handlers: The app.AddRESTHandlers method automatically generates CRUD handlers for the User struct. This includes routes for creating, reading, updating, and deleting user records. By calling this method, you save time and reduce boilerplate code.

This example illustrates how GoFr’s AddRESTHandlers method simplifies the process of creating a RESTful API. By just defining a struct and any custom handler if needed, you can rapidly develop and deploy a fully functional API.

Link to complete code : GoFr’s AddRESTHandlers Example

Conclusion

In this article, we explored how GoFr simplifies the process of building a RESTful API in Golang. By using GoFr’s AddRESTHandlers, you can quickly generate CRUD operations for your data models with minimal effort. We demonstrated how to define a Go struct, set up a database connection, and customize handlers where necessary, all while minimizing the boilerplate code typically required in API development.

We also explored the use of SQL tags for adding constraints to your data model and ensuring data integrity. Additionally, we saw how GoFr seamlessly handles database interactions and migrations, simplifying the setup process.

If you’re looking for a fast and efficient way to build RESTful APIs in Golang, GoFr is an excellent choice. With its user-friendly approach and robust features, GoFr empowers developers to create high-quality APIs without reinventing the wheel.

We encourage you to try GoFr in your next project and experience its simplicity and efficiency firsthand!

Do checkout GoFr and it’s Github Repo and support it by giving it a ⭐.

Thank you for reading, Happy coding!


Fastest & Simplest way to write a REST Api in Golang was originally published in Level Up Coding on Medium, where people are continuing the conversation by highlighting and responding to this story.


This content originally appeared on Level Up Coding - Medium and was authored by Mundhraumang


Print Share Comment Cite Upload Translate Updates
APA

Mundhraumang | Sciencx (2024-09-08T14:50:26+00:00) Fastest & Simplest way to write a REST Api in Golang. Retrieved from https://www.scien.cx/2024/09/08/fastest-simplest-way-to-write-a-rest-api-in-golang/

MLA
" » Fastest & Simplest way to write a REST Api in Golang." Mundhraumang | Sciencx - Sunday September 8, 2024, https://www.scien.cx/2024/09/08/fastest-simplest-way-to-write-a-rest-api-in-golang/
HARVARD
Mundhraumang | Sciencx Sunday September 8, 2024 » Fastest & Simplest way to write a REST Api in Golang., viewed ,<https://www.scien.cx/2024/09/08/fastest-simplest-way-to-write-a-rest-api-in-golang/>
VANCOUVER
Mundhraumang | Sciencx - » Fastest & Simplest way to write a REST Api in Golang. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/09/08/fastest-simplest-way-to-write-a-rest-api-in-golang/
CHICAGO
" » Fastest & Simplest way to write a REST Api in Golang." Mundhraumang | Sciencx - Accessed . https://www.scien.cx/2024/09/08/fastest-simplest-way-to-write-a-rest-api-in-golang/
IEEE
" » Fastest & Simplest way to write a REST Api in Golang." Mundhraumang | Sciencx [Online]. Available: https://www.scien.cx/2024/09/08/fastest-simplest-way-to-write-a-rest-api-in-golang/. [Accessed: ]
rf:citation
» Fastest & Simplest way to write a REST Api in Golang | Mundhraumang | Sciencx | https://www.scien.cx/2024/09/08/fastest-simplest-way-to-write-a-rest-api-in-golang/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.