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

https://github.com/instantan/watcher

File system watching and hotreloading
https://github.com/instantan/watcher

Last synced: 8 months ago
JSON representation

File system watching and hotreloading

Awesome Lists containing this project

README

          

# watcher
> File system watching and hotreloading

## Simple hot reloading for your go application
> main.go
```go
package main

import (
"fmt"

"github.com/Instantan/watcher"
)

func main() {
watcher.HotReload()
fmt.Printf("Started")
<-make(chan struct{})
}
```