home | title | heroImage | actions | features | footer | ||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
true |
Home |
|
|
MIT Licensed | Copyright © 2020-present Gominima Team |
# install in your project
go get github.com/gominima/minima
# create a simple file
echo 'package main
import "github.com/gominima/minima"
func main() {
app := minima.New()
app.Get("/"), func(res *minima.Response, req *minima.Request) {
res.OK().Send("Hello World")
})
app.Listen(":3000")
}' > main.go
# start the server
go run main.go