Skip to content

Releases: CoderVlogger/go-web-frameworks

Project Structure for Fiber + Updated API Specs

16 Mar 18:57

Choose a tag to compare

What's in this release?

API Specs:

  • Clarity around PUT endpoint
  • Include Postman collection

Fiber app:

  • Project structure
  • New makefile targets for linting, formatting, and testing

Fiber CRUD Endpoints

23 Feb 22:20

Choose a tag to compare

First two steps for the Fiber web framework.

  • Initial project structure
  • CRUD JSON API
  • Paging and error handling

Steps: https://github.com/CoderVlogger/go-web-frameworks/tree/main/_step_by_step/fiber

Echo, Iris, and Fiber Web Frameworks - Initial Release

16 Feb 23:03

Choose a tag to compare

This release includes all the previous changes + most recent implementation: CRUD endpoints with Go Fiber web framework.

So, in total we have:

Echo Web Framework:

  • Simple JSON endpoint
  • CRUD JSON endpoints for an example data structure
  • Paging and error handling
  • Parsing query params
  • Exposing static assets via an endpoint

Iris Web Framework:

  • Simple JSON endpoint
  • CRUD JSON endpoints for an example data structure
  • Paging and error handling
  • Parsing query params

Fiber Web Framework:

  • Simple JSON endpoint
  • CRUD endpoints for an example data structure
  • Paging and error handling
  • Parsing query params