gin-gorm-api-example

[Article] Minimal code for Golang based API

  • 所有者: cgrant/gin-gorm-api-example
  • 平台:
  • 许可证:
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Simple CRUD API in Go

This is an example of a minimalist api that might be ideal for prototyping.

Read the walkthrough on my blog at:http://cgrant.io/tutorials/go/simple-crud-api-with-go-gin-and-gorm/

Dynamic Model - Simply update the struct

It has AutoMigrate enabled in the main function which allows the model struct to me changed as needed during development phases.

Simplified Data Persistence with GORM

In general I'm not a fan of ORM solutions, and in practice I would recommend manually coding the persistence logic. This code however is intended to shorten the cycle and focus on prototyping in as little code as possible. I’ve found GORM to be a popular and flexible ORM. It seems to be pretty good in this space.

Simplified route handling with Gin

Previously I worked with gorilla and negroni for my web handling. I stumble across Gin and didn't want yet another new framework but it turned out to be just want I needed here. It's straightforward and simple with some built in features ideal for API work

Favorite Parts

In general I like that I can get a working solution with just 80 lines of code.

Also I liked the parsing and mapping from the request to persistence. You're able to pass in one field or the entire model and the system correctly updates. No need to specify the exact input.

Streamlined update. There a bit of code in the upsert method that gets a model from the db, and the maps the PUT body onto it, then saves it in three simple lines. It was just refreshingly simple.

db.Where("id = ?", id).First(&person)
c.BindJSON(&person)
db.Save(&person)

Wrap up

Any rate I'll probably use this for simple prototyping and tutorials. Clearly needs more code before production use.

主要指标

概览
名称与所有者cgrant/gin-gorm-api-example
主编程语言Go
编程语言Go (语言数: 1)
平台
许可证
所有者活动
创建于2016-12-03 01:14:47
推送于2022-01-25 19:32:04
最后一次提交2022-01-25 13:32:04
发布数0
用户参与
星数103
关注者数3
派生数24
提交数4
已启用问题?
问题数2
打开的问题数1
拉请求数0
打开的拉请求数0
关闭的拉请求数0
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?