Skip to content

Installation

Requirements

  • Go 1.18+ (for generics support)
  • Git

Install

go get github.com/chuccp/go-web-frame

Verify Installation

Create a simple test file:

package main

import (
    wf "github.com/chuccp/go-web-frame"
)

func main() {
    _ = wf.NewBuilder(nil)
}

Run:

go run main.go

Dependencies

Go Web Frame automatically installs the following dependencies:

  • Gin (HTTP framework)
  • GORM (ORM)
  • Viper (configuration)
  • Zap (logging)
  • Sonic (JSON)

Next Steps