Go to file
Max Claus Nunes 612540b1b3 Hardcode gaper version 2018-09-08 10:49:30 -03:00
cmd/gaper Hardcode gaper version 2018-09-08 10:49:30 -03:00
testdata Add test for build and runner errors 2018-07-24 22:05:10 -03:00
.editorconfig Initial commit 2018-06-17 19:53:26 -03:00
.gitignore Improve test coverage 2018-07-12 10:27:07 -03:00
.goreleaser.yml Move cli to a different folder so Godoc works for the rest 2018-06-22 13:45:45 -03:00
.travis.yml Move cli to a different folder so Godoc works for the rest 2018-06-22 13:45:45 -03:00
CONTRIBUTING.md Initial commit 2018-06-17 19:53:26 -03:00
Gopkg.lock Improve test coverage 2018-07-12 10:27:07 -03:00
Gopkg.toml Add few tests for builder and runner parts 2018-06-20 11:54:10 -03:00
LICENSE Initial commit 2018-06-17 19:53:26 -03:00
Makefile Apply improvements suggested by the linter 2018-07-12 10:35:44 -03:00
README.md Fix typo in docs 2018-07-22 10:41:26 -03:00
appveyor.yml Fix appveyor setting 2018-06-22 22:14:56 -03:00
builder.go Show build details when a build fails 2018-09-08 10:35:29 -03:00
builder_test.go Show build details when a build fails 2018-09-08 10:35:29 -03:00
gaper.go Remove extra space from logs 2018-09-08 10:27:10 -03:00
gaper_test.go Don't leave during a restart failure 2018-08-06 10:48:19 -03:00
gopher-gaper.png Add logo 2018-06-21 22:22:05 -03:00
logger.go Improve test coverage for logger 2018-07-22 10:56:23 -03:00
logger_test.go Improve test coverage for logger 2018-07-22 10:56:23 -03:00
runner.go Improve test coverage 2018-07-12 10:27:07 -03:00
runner_test.go Improve test coverage 2018-07-12 10:27:07 -03:00
watcher.go Fix invalid memory error after deleting a watched file 2018-09-08 10:41:56 -03:00
watcher_test.go Improve test coverage for watcher 2018-07-24 21:31:19 -03:00

README.md

gaper

Used to build and restart a Go project when it crashes or some watched file changes
Aimed to be used in development only.


Software License Linux - Build Status Windows - Build status Coverage Status Go Doc Go Report Card Powered By: GoReleaser

Installation

go get -u github.com/maxcnunes/gaper/cmd/gaper

Changelog

See Releases for detailed history changes.

Usage

NAME:
   gaper - Used to build and restart a Go project when it crashes or some watched file changes

USAGE:
   gaper [global options] command [command options] [arguments...]

VERSION:
   version

COMMANDS:
     help, h  Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --bin-name value                 name for the binary built by gaper for the executed program (default current directory name)
   --build-path value               path to the program source code (default: ".")
   --build-args value               arguments used on building the program
   --program-args value             arguments used on executing the program
   --verbose                        turns on the verbose messages from gaper
   --disable-default-ignore         turns off default ignore for hidden files and folders, "*_test.go" files, and vendor folder
   --watch value, -w value          list of folders or files to watch for changes
   --ignore value, -i value         list of folders or files to ignore for changes
   --poll-interval value, -p value  how often in milliseconds to poll watched files for changes (default: 500)
   --extensions value, -e value     a comma-delimited list of file extensions to watch for changes (default: "go")
   --no-restart-on value, -n value  don't automatically restart the supervised program if it ends:
                                      if "error", an exit code of 0 will still restart.
                                      if "exit", no restart regardless of exit code.
                                      if "success", no restart only if exit code is 0.
   --help, -h                       show help
   --version, -v                    print the version

Since in most projects there is no need to watch changes of:

  • hidden files and folders
  • test files (*_test.go)
  • vendor folder

Gaper by default ignores those cases already. Although, if you need Gaper to watch those files anyway it is possible to disable this setting with --disable-default-ignore argument.

Examples

Using all defaults provided by Gaper:

gaper

Ignore watch over all test files:

no need for this in case if you are not using --disable-default-ignore

--ignore './**/*_test.go'

Contributing

See the Contributing guide for steps on how to contribute to this project.

Reference

This package was heavily inspired by gin and node-supervisor.

Basically, Gaper is a mixing of those projects above. It started from gin code base and I rewrote it aiming to get something similar to node-supervisor (but simpler). A big thanks for those projects and for the people behind it! 👏👏

How is Gaper different of Gin

The main difference is that Gaper removes a layer of complexity from Gin which has a proxy running on top of the executed server. It allows to postpone a build and reload the server when the first call hits it. With Gaper we don't care about that feature, it just restarts your server whenever a change is made.