mirror of
https://github.com/kataras/iris.git
synced 2026-01-11 14:05:59 +00:00
c86636b550f3f26ad27d2e73a7e5e642f38768f9
Former-commit-id: 212002053838f76ec9e7084f7b20e3dfd77c75b3
Sessions are now in full sync with the registered database, on
acquire(init), set, get, delete, clear, visit, len, release(destroy) as requested by almost everyone. https://github.com/kataras/iris/issues/969
create the new FileServer and HandleDir, deprecate the rest APIBuilder/Party static methods and more
create the new FileServer and HandleDir, deprecate the rest APIBuilder/Party static methods and more
add support for iris-specific form of generating connection IDs as requested at: https://github.com/kataras/neffos/issues/1#issuecomment-508689819
Update to version 11.0.4. Read https://github.com/kataras/iris/blob/master/HISTORY.md#fr-09-november-2018--v1104
extract the
Delim for redis sessiondb as requested at https://github.com/kataras/iris/issues/1256 and add a mvc/regexp example and some other trivial changes
Iris Web Framework

Iris is a fast, simple yet fully featured and very efficient web framework for Go. It provides a beautifully expressive and easy to use foundation for your next website or API.
Learn what others say about Iris and star this github repository.
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
Routing is powered by the muxie project.
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.
Description
Languages
Go
94.3%
JavaScript
3.2%
HTML
1.9%
CSS
0.5%