86af4088f3
Former-commit-id: b0004167f164b4131d55bc3e9aa73a48793e3b36 |
||
---|---|---|
_benchmarks | ||
_examples | ||
.github | ||
cache | ||
context | ||
core | ||
hero | ||
httptest | ||
macro | ||
middleware | ||
mvc | ||
sessions | ||
typescript | ||
versioning | ||
view | ||
websocket | ||
.fossa.yml | ||
.gitattributes | ||
.gitignore | ||
.travis.yml | ||
AUTHORS | ||
CODE_OF_CONDUCT.md | ||
configuration_test.go | ||
configuration.go | ||
CONTRIBUTING.md | ||
doc.go | ||
FAQ.md | ||
go.mod | ||
go.sum | ||
go19.go | ||
HISTORY_GR.md | ||
HISTORY_ID.md | ||
HISTORY_ZH.md | ||
HISTORY.md | ||
iris.go | ||
LICENSE | ||
NOTICE | ||
README_GR.md | ||
README_ID.md | ||
README_JPN.md | ||
README_PT_BR.md | ||
README_RU.md | ||
README_ZH.md | ||
README.md | ||
VERSION |
Iris Web Framework
Iris is a fast, simple yet fully featured and very efficient web framework for Go. Routing is powered by the muxie project.
Iris provides a beautifully expressive and easy to use foundation for your next website or API.
Iris offers a complete and decent solution and support for all gophers around the globe.
Learn what others say about Iris and star this github repository to stay up to date.
Quick start
# assume the following code in example.go file
$ cat example.go
package main
import "github.com/kataras/iris"
func main() {
app := iris.Default()
app.Get("/ping", func(ctx iris.Context) {
ctx.JSON(iris.Map{
"message": "pong",
})
})
// listen and serve on http://0.0.0.0:8080.
app.Run(iris.Addr(":8080"))
}
# run example.go and visit http://0.0.0.0:8080/ping on browser
$ go run example.go
Get hired
There are many companies and start-ups looking for Go web developers with Iris experience as requirement, we are searching for you every day and we post those information via our facebook page, like the page to get notified, we have already posted some of them.
Author
Gerasimos Maropoulos |
License
Iris is licensed under the 3-Clause BSD License. Iris is 100% free and open-source software.
For any questions regarding the license please send e-mail.