All Projects → sagikazarmark → mga

sagikazarmark / mga

Licence: MIT License
Modern Go Application tool

Programming Languages

go
31211 projects - #10 most used programming language
shell
77523 projects
Starlark
911 projects

MGA: Modern Go Application tool

GitHub Workflow Status Go Report Card

Go application development tool applying modern practices.

The mga tool is an experimental collection of tools and practices related to developing Go applications. Its goal is to make the maintenance of applications, thus the life of developers easier.

⚠️ This tool is still under heavy development! Things may change. ⚠️

Currently it includes code generators and scaffolding tools:

  • Go kit endpoint generator (based on a service interface)
  • Testify mock generator (similar to mockery)
  • Event dispatcher generator (based on event interface) (compatible with Watermill)
  • Event handler generator (based on event structs) (compatible with Watermill)

Roadmap:

See the Modern Go Application for a detailed usage example.

Installation

Download a prebuilt binary from the Releases page, or install the tool from source:

go get sagikazarmark.dev/mga

Usage

Endpoint generator

An endpoint can be generated based on a service interface:

package my

import (
    "context"
)

// +kit:endpoint

// Service is a business service.
type Service interface{
    // DoSomething is a service call.
    //
    // Named parameters and results are optional, but they make the generated code nicer.
    DoSomething(ctx context.Context, myparam string) (id string, err error)
}

Then run the generator:

mga generate kit endpoint ./...

See Modern Go Application for an example.

Testify mock generator

package my

// +testify:mock

// Service is a business service.
type Service interface{}

// +testify:mock:testOnly=true

// Service2 is a business service.
type Service2 interface{}
mga generate testify mock ./...

Event dispatcher generator

package my

import (
    "context"
)

// +mga:event:dispatcher

type Events interface{
    MyEvent(ctx context.Context, ev MyEvent) error
}

type MyEvent struct{}
mga generate event dispatcher ./...

See Modern Go Application for an example.

Event handler generator

package my

// +mga:event:handler

type Event struct{
    ID string

    MyParam string
}
mga generate event handler ./...

See Modern Go Application for an example.

Development

Contributions are welcome! :)

  1. Clone the repository
  2. Make changes on a new branch
  3. Run the test suite:
    ./pleasew build
    ./pleasew test
    ./pleasew gotest
    ./pleasew lint
  4. Commit, push and open a PR

License

The project is licensed under the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].