Neo is minimal and fast Go Web Framework with extremely simple API.
During development you will enjoy in automatic reruning and recompiling your Neo application when source changes.
Build your Neo Application in few lines of code.
package main
import (
"github.com/ivpusic/neo"
)
func main() {
app := neo.App()
app.Get("/", func(ctx *neo.Ctx) (int, error) {
return 200, ctx.Res.Text("I am Neo Programmer")
})
app.Start()
}
neo run main.go