Go Web Framework
Last updated Jun 10, 2026
415
Stars
40
Forks
6
Issues
0
Stars/day
Attention Score
21
Topics
Language breakdown
Go 99.1%
Smarty 0.6%
HTML 0.3%
▸ Files
click to expand
README
Go Web Framework
Installation
# framework
go get github.com/ivpusic/neo
CLI tool
go get github.com/ivpusic/neo/cmd/neo
Documentation
Project SiteExample
Create Neo application:
neo new myapp cd myapp
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() }
Run it:
neo run main.go
License
MIT🔗 More in this category