![]() |
vor 5 Jahren | |
---|---|---|
.. | ||
.drone.yml | vor 5 Jahren | |
.gitignore | vor 5 Jahren | |
LICENSE | vor 5 Jahren | |
README.md | vor 5 Jahren | |
context.go | vor 5 Jahren | |
go.mod | vor 5 Jahren | |
go.sum | vor 5 Jahren | |
logger.go | vor 5 Jahren | |
macaron.go | vor 5 Jahren | |
macaronlogo.png | vor 5 Jahren | |
recovery.go | vor 5 Jahren | |
render.go | vor 5 Jahren | |
response_writer.go | vor 5 Jahren | |
return_handler.go | vor 5 Jahren | |
router.go | vor 5 Jahren | |
static.go | vor 5 Jahren | |
tree.go | vor 5 Jahren | |
util_go17.go | vor 5 Jahren | |
util_go18.go | vor 5 Jahren |
Package macaron is a high productive and modular web framework in Go.
The minimum requirement of Go is 1.6.
To install Macaron:
go get gitea.com/macaron/macaron
The very basic usage of Macaron:
package main
import "gitea.com/macaron/macaron"
func main() {
m := macaron.Classic()
m.Get("/", func() string {
return "Hello world!"
})
m.Run()
}
Middlewares allow you easily plugin/unplugin features for your Macaron applications.
There are already many middlewares to simplify your work:
This project is under the Apache License, Version 2.0. See the LICENSE file for the full license text.