https://github.com/thomd/gomon
Automatically restart a golang app on change of your Go source files. Like nodemon for Go.
https://github.com/thomd/gomon
golang
Last synced: 7 months ago
JSON representation
Automatically restart a golang app on change of your Go source files. Like nodemon for Go.
- Host: GitHub
- URL: https://github.com/thomd/gomon
- Owner: thomd
- License: mit
- Created: 2020-09-14T08:02:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T18:25:39.000Z (over 3 years ago)
- Last Synced: 2025-02-05T21:42:33.325Z (over 1 year ago)
- Topics: golang
- Language: Go
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Gomon
Gomon is a utility for monitoring changes in your Go source code and automatically restart your program.
This is particularly useful for development of Go servers.
## Install
go install github.com/thomd/gomon@latest
## Examples of usage
Run `go run .` as
gomon .
Ignore folders with `-i` flag:
gomon -i .git -i test .