Fiber REST API
Simple REST API built with Go & Fiber
About
This is a re-creation of Echo REST API. This is to compare the frameworks and see which I enjoy more and will be using for upcoming projects.
Clone repository
In the desired folder, run:
git clone git@github.com:ReeceRose/fiber-rest-api.git .
Setup for development
Install all project dependencies
go mod vendor
go mod download
Run API (for development purposes)
go run .
Build API
Depending on your system, this will either generate fiber-rest-api or fiber-rest-api.exe
go build .
Run production API
./fiber-rest-api # Note, this file name and exact syntax may differ depending on your system. This is simply and example.