jonesrussell / generator-go

A Yeoman generator to scaffold a simple golang application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A non-opinionated golang code generator

A Yeoman generator for the golang programming language.

What is golang ?

See the Golang documentation

Why a generator ?

The Golang team defined guidelines to organize code and structure an application.

The generator builds a standard directory hierarchy complying with those guidelines.

Usage

  1. Install yeoman
$ npm install -g yo
  1. Install the generator
$ npm install generator-go
  1. Run the generator
$ yo go

That's all folks !

This will generate a minimalist directory hierarchy, a makefile and a .gitignore in your $GOPATH folder.

CURRENT FOLDER
├── go.mod
├── hello
│   ├── hello.go       # source file
│   └── hello_test.go  # test file
├── main.go            # app entrypoint
├── Makefile           # build targets
└── README.md

Once built, you can run your application

$ make run

Compile sources and build binary

$ make install

Run all tests

$ make test

And clean up the binary

$ make clean

How to contribute

  1. Fork the project

  2. Clone your forked project locally

$ git clone https://github.com/your_repo/generator-go.git
$ cd generator-go
  1. Modify sources

  2. Symlink the package folder

$ sudo npm link
  1. Test your generator
$ yo go
  1. Submit a pull request

This project welcomes all contributors, feel free to apply !

Dependencies

This project depends on

About

A Yeoman generator to scaffold a simple golang application

License:MIT License


Languages

Language:JavaScript 86.3%Language:Go 13.7%