DEV Community

Discussion on: Please recommend a restful API framework in Golang

Collapse
 
pbnj profile image
Peter Benjamin (they/them)

Depending on the requirements of your REST API project:

  • If it's a small project that doesn't need sessions/cookies, database integrations ...etc, then the standard library is sufficient.
    • One step up from the standard library would be an unopinionated framework like gin
  • If it's a big project with time restraints/deadlines or requires features like database integrations, cookie/session management ...etc, then go with buffalo.
Collapse
 
taitung profile image
Guo-Guang

yeah, since the project I am going to apply Go is quite simple. I actually have been working MUX.