The fastest HTTP/2 Go Web Framework. New, modern and easy to learn. Fast development with Code you control. Unbeatable cost-performance ratio 🚀
Go to file
Gerasimos (Makis) Maropoulos da73c1817f fix https://github.com/kataras/iris/issues/1349
Former-commit-id: 1e2c7185fc3c536ceb8b269c75b9a2c19323960b
2019-09-07 05:57:35 +03:00
_benchmarks formatting 2019-08-17 10:06:20 +03:00
_examples formatting 2019-08-17 10:06:20 +03:00
.github Update issue templates 2019-08-27 21:13:28 +03:00
cache formatting 2019-08-17 10:06:20 +03:00
context formatting 2019-08-17 10:06:20 +03:00
core formatting 2019-08-17 10:06:20 +03:00
hero Add status code 103 Early Hints. Add the ability to customize and change the order of controller's fields and their registered valid dependencies relative to: #1343 2019-08-26 16:43:02 +03:00
httptest Add status code 103 Early Hints. Add the ability to customize and change the order of controller's fields and their registered valid dependencies relative to: #1343 2019-08-26 16:43:02 +03:00
macro formatting 2019-08-17 10:06:20 +03:00
middleware formatting 2019-08-17 10:06:20 +03:00
mvc fix https://github.com/kataras/iris/issues/1349 2019-09-07 05:57:35 +03:00
sessions fix radix get keys issue described at: #1328 2019-08-22 14:46:39 +03:00
typescript formatting 2019-08-17 10:06:20 +03:00
versioning formatting 2019-08-17 10:06:20 +03:00
view formatting 2019-08-17 10:06:20 +03:00
websocket add content negotiation feature, add context.ReadYAML and fix https://github.com/kataras/neffos/issues/1#issuecomment-515698536 2019-08-03 04:41:09 +03:00
.fossa.yml Add the new websocket package (which is just a helper for kataras/neffos) and an example for go server, client, browser client and nodejs client. Add a .fossa.yml and the generated NOTICE file for 3rd-party libs. Update go.mod, go.sum. Update the vendor folder for pongo2 to its latest master as well 2019-06-02 17:49:45 +03:00
.gitattributes minor 2019-07-19 12:27:35 +03:00
.gitignore nothing serious here yet, just having fun with powershell and my nerves - but it works 2019-06-24 04:49:24 +03:00
.travis.yml remove experimental-handlers examples, users should visit github.com/iris-contrib/middleware instead, let's not have duplications 2019-07-15 16:03:19 +03:00
AUTHORS Update to version 8.5.5 | Read HISTORY.md 2017-11-02 05:54:33 +02:00
CODE_OF_CONDUCT.md Update to version 8.5.5 | Read HISTORY.md 2017-11-02 05:54:33 +02:00
configuration_test.go formatting 2019-08-17 10:06:20 +03:00
configuration.go Fix Structtag Tunneling 2019-08-04 16:06:26 +02:00
CONTRIBUTING.md 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 2019-05-30 10:48:07 +03:00
doc.go Publish version 11.2.8: https://github.com/kataras/iris/releases/tag/v11.2.8 2019-08-16 19:27:25 +03:00
FAQ.md touches before release 2019-07-22 04:32:54 +03:00
go.mod update neffos 2019-08-10 19:28:03 +03:00
go.sum update neffos 2019-08-10 19:28:03 +03:00
go19.go New XMLMap func which makes a map value type an xml compatible content to render and give option to render a Problem as XML - rel to #1335 2019-08-16 19:18:46 +03:00
HISTORY_ES.md Readme and History Spanish Translation 2019-08-21 09:02:49 -06:00
HISTORY.md Publish version 11.2.8: https://github.com/kataras/iris/releases/tag/v11.2.8 2019-08-16 19:27:25 +03:00
iris.go Add status code 103 Early Hints. Add the ability to customize and change the order of controller's fields and their registered valid dependencies relative to: #1343 2019-08-26 16:43:02 +03:00
LICENSE some cleanup, and remove the test 'testwebocket2' package at all; A lower-level fast websocket impl based on gobwas/ws will be published on a different repo, it is a WIP 2019-02-22 21:24:10 +02:00
NOTICE fossa 2019-07-22 11:40:17 +03:00
README_ES.md fix https://github.com/kataras/iris/issues/1349 2019-09-07 05:57:35 +03:00
README_GR.md fix https://github.com/kataras/iris/issues/1349 2019-09-07 05:57:35 +03:00
README_KO.md add korean README 2019-09-06 22:55:12 +09:00
README_ZH.md fix https://github.com/kataras/iris/issues/1349 2019-09-07 05:57:35 +03:00
README.md fix typo 2019-09-06 22:58:33 +09:00
VERSION Publish version 11.2.8: https://github.com/kataras/iris/releases/tag/v11.2.8 2019-08-16 19:27:25 +03:00

Iris

build status report card view examples chat release

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.

Version 11.2 released!

https://www.facebook.com/iris.framework/posts/3276606095684693

Learning Iris

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",
        })
    })

    app.Run(iris.Addr(":8080"))
}
# run example.go and
# visit http://localhost:8080/ping on browser
$ go run example.go

Routing is powered by muxie, the most powerful and fastest trie-based software written in Go.

Iris contains extensive and thorough wiki making it easy to get started with the framework.

For a more detailed technical documentation you can head over to our godocs. And for executable code you can always visit the _examples repository's subdirectory.

Do you like to read while traveling?

Book cover

You can request a PDF version and online access of the E-Book today and be participated in the development of Iris.

Contributing

We'd love to see your contribution to the Iris Web Framework! For more information about contributing to the Iris project please check the CONTRIBUTING.md file.

List of all Contributors

Security Vulnerabilities

If you discover a security vulnerability within Iris, please send an e-mail to iris-go@outlook.com. All security vulnerabilities will be promptly addressed.

License

The project name "Iris" was inspired by the Greek mythology.

Iris Web Framework is free and open-source software licensed under the 3-Clause BSD License.