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 302597faac example: sessions: scale out using redis
Former-commit-id: a811648e0bdf83c289656426f8ba67d785b7d5cc
2020-07-19 12:55:48 +03:00
_benchmarks move benchmarks to a repository which its results are re-calculated and its README re-generated on each run. This will allow dev community to participate and contribute 2020-03-12 01:51:21 +02:00
_examples example: sessions: scale out using redis 2020-07-19 12:55:48 +03:00
.github use the new protobuf package and other minor stuff 2020-06-21 17:15:28 +03:00
cache (#1554) Add support for all common compressions (write and read) 2020-07-10 23:21:09 +03:00
context doc: minor 2020-07-19 10:26:59 +03:00
core PushTargetRegexp: simplify code 2020-07-18 12:41:31 +03:00
hero fix #1563 due to latest DI source changes 2020-07-17 12:59:39 +03:00
httptest add LogLevel/WithLogLevel in Configuration and run Configurators before Build state 2020-05-08 03:55:54 +03:00
i18n (#1554) Add support for all common compressions (write and read) 2020-07-10 23:21:09 +03:00
macro (#1554) Add support for all common compressions (write and read) 2020-07-10 23:21:09 +03:00
middleware add HashGenerator on requestid middleware 2020-07-15 11:18:40 +03:00
mvc (#1554) Add support for all common compressions (write and read) 2020-07-10 23:21:09 +03:00
sessions fix #1553 2020-07-19 07:09:14 +03:00
versioning (#1554) Add support for all common compressions (write and read) 2020-07-10 23:21:09 +03:00
view (#1554) Add support for all common compressions (write and read) 2020-07-10 23:21:09 +03:00
websocket (#1554) Add support for all common compressions (write and read) 2020-07-10 23:21: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 2020-01-05 18:27:21 +02:00
.gitignore file-server: fix ShowList on root dir 2020-07-05 05:39:48 +03:00
.travis.yml remove the 'typescript' package entirely in favor of iris-cli and because the alm editor was deprecated by its author (consider using the designtsx.com instead) 2020-04-19 16:47:15 +03:00
aliases.go New iris.DirOptions.PushTargetsRegexp 2020-07-18 06:10:16 +03:00
AUTHORS Update to version 8.5.5 | Read HISTORY.md 2017-11-02 05:54:33 +02:00
cli.go fix #1557 2020-07-11 16:14:31 +03: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 add 'HostProxyHeaders' Configuration field 2020-06-11 18:52:35 +03:00
configuration.go (#1554) Add support for all common compressions (write and read) 2020-07-10 23:21:09 +03:00
CONTRIBUTING.md update faq, contributing and go workflow 2019-11-20 02:51:16 +02:00
doc.go implement #1536 with (SetRegisterRule(iris.RouteOverlap)) 2020-06-14 08:09:42 +03:00
FAQ.md README: add 'run in the browser' button 2020-06-24 00:13:31 +03:00
go.mod add 'DirOptions.PushTargets' for http/2 push on index(es) - #1562 2020-07-16 08:03:55 +03:00
HISTORY_ES.md reorganization of _examples and add some new examples such as iris+groupcache+mysql+docker 2020-06-07 15:26:06 +03:00
HISTORY.md fix #1553 2020-07-19 07:09:14 +03:00
iris.go add HashGenerator on requestid middleware 2020-07-15 11:18:40 +03:00
LICENSE miscellaneous 2020-01-07 03:41:07 +02:00
NOTICE (#1554) Add support for all common compressions (write and read) 2020-07-10 23:21:09 +03:00
README_ES.md README: add 'run in the browser' button 2020-06-24 00:13:31 +03:00
README_FA.md README: add 'run in the browser' button 2020-06-24 00:13:31 +03:00
README_FR.md README: add 'run in the browser' button 2020-06-24 00:13:31 +03:00
README_GR.md README: add 'run in the browser' button 2020-06-24 00:13:31 +03:00
README_KO.md README: add 'run in the browser' button 2020-06-24 00:13:31 +03:00
README_RU.md README: add 'run in the browser' button 2020-06-24 00:13:31 +03:00
README_ZH.md README: add 'run in the browser' button 2020-06-24 00:13:31 +03:00
README.md README: update benchmarks. 2020-07-18 14:35:27 +03:00
VERSION Update to version 12.1.8 - Read HISTORY.md 2020-02-16 11:14:35 +02:00

News

This is the under-development branch. Stay tuned for the upcoming release v12.2.0. Looking for a stable release? Head over to the v12.1.8 branch instead.

The official Iris Command Line Interface will soon be near you in 2020!

Support your favorite web framework through Github Sponsors Program!

Iris Web Framework

build status view examples chat donate

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 saying about Iris and star this open-source project to support its potentials.

Benchmarks: Jul 18, 2020 at 10:46am (UTC)

📖 Learning Iris

Quick start
# https://github.com/kataras/iris/wiki/Installation
$ go get github.com/kataras/iris/v12@master
# assume the following code in main.go file
$ cat main.go
package main

import "github.com/kataras/iris/v12"

func main() {
  app := iris.New()
  app.Get("/", index)
  app.Listen(":8080")
}

func index(ctx iris.Context) {
  ctx.HTML("<h1>Hello, World!</h1>")
}
$ go run main.go

run in the browser

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

follow Iris web framework on twitter

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

This project is licensed under the BSD 3-clause license, just like the Go project itself.

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