An open API service indexing awesome lists of open source software.

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.

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 .