Home

Awesome

<p align="center"> <img width="300" src=".github/logo.svg" /> </p> <h1 align="center">goverter</h1> <p align="center"><i>a "type-safe Go converter" generator</i></p> <p align="center"> <a href="https://github.com/jmattheis/goverter/actions/workflows/build.yml"> <img alt="Build Status" src="https://github.com/jmattheis/goverter/actions/workflows/build.yml/badge.svg"> </a> <a href="https://codecov.io/gh/jmattheis/goverter"> <img alt="codecov" src="https://codecov.io/gh/jmattheis/goverter/branch/main/graph/badge.svg"> </a> <a href="https://goreportcard.com/report/github.com/jmattheis/goverter"> <img alt="Go Report Card" src="https://goreportcard.com/badge/github.com/jmattheis/goverter"> </a> <a href="https://pkg.go.dev/github.com/jmattheis/goverter"> <img alt="Go Reference" src="https://pkg.go.dev/badge/github.com/jmattheis/goverter.svg"> </a> <a href="https://github.com/jmattheis/goverter/releases/latest"> <img alt="latest release" src="https://img.shields.io/github/release/jmattheis/goverter.svg"> </a> </p>

goverter is a tool for creating type-safe converters. All you have to do is create an interface and execute goverter. The project is meant as alternative to jinzhu/copier that doesn't use reflection.

Getting StartedInstallationCLIConfig

Features

Example

Given this converter:

package example

// goverter:converter
type Converter interface {
    ConvertItems(source []Input) []Output

    // goverter:ignore Irrelevant
    // goverter:map Nested.AgeInYears Age
    Convert(source Input) Output
}

type Input struct {
    Name string
    Nested InputNested
}
type InputNested struct {
    AgeInYears int
}
type Output struct {
    Name string
    Age int
    Irrelevant bool
}

Goverter will generated these conversion methods:

package generated

import example "goverter/example"

type ConverterImpl struct{}

func (c *ConverterImpl) Convert(source example.Input) example.Output {
    var exampleOutput example.Output
    exampleOutput.Name = source.Name
    exampleOutput.Age = source.Nested.AgeInYears
    return exampleOutput
}
func (c *ConverterImpl) ConvertItems(source []example.Input) []example.Output {
    var exampleOutputList []example.Output
    if source != nil {
        exampleOutputList = make([]example.Output, len(source))
        for i := 0; i < len(source); i++ {
            exampleOutputList[i] = c.Convert(source[i])
        }
    }
    return exampleOutputList
}

See Getting Started.

Versioning

goverter uses SemVer for versioning the cli.

License

This project is licensed under the MIT License - see the LICENSE file for details

Logo by MariaLetta