/iris

The fastest HTTP/2 Go Web Framework. AWS Lambda, gRPC, MVC, Unique Router, Websockets, Sessions, Test suite, Dependency Injection and more. A true successor of expressjs and laravel | 谢谢 https://github.com/kataras/iris/issues/1329 |

Primary LanguageGoBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Black Lives Matter

News

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

Try the official Iris Command Line Interface today!

Due to the large workload, there may be delays in answering your questions.

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.

Simple Handler
package main

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

type (
  request struct {
    Firstname string `json:"firstname"`
    Lastname  string `json:"lastname"`
  }

  response struct {
    ID      string `json:"id"`
    Message string `json:"message"`
  }
)

func main() {
  app := iris.New()
  app.Handle("PUT", "/users/{id:uuid}", updateUser)
  app.Listen(":8080")
}

func updateUser(ctx iris.Context) {
  id, _ := ctx.Params().Get("id")

  var req request
  if err := ctx.ReadJSON(&req); err != nil {
    ctx.StopWithError(iris.StatusBadRequest, err)
    return
  }

  resp := response{
    ID:      id,
    Message: req.Firstname + " updated successfully",
  }
  ctx.JSON(resp)
}

Read the routing examples for more!

Handler with custom input and output arguments

https://github.com/kataras/iris/blob/master/_examples/dependency-injection/basic/main.go

Interesting? Read the examples.

Party Controller (NEW)

Head over to the full running example!

MVC
package main

import (
  "github.com/kataras/iris/v12"
  "github.com/kataras/iris/v12/mvc"
)

type (
  request struct {
    Firstname string `json:"firstname"`
    Lastname  string `json:"lastname"`
  }

  response struct {
    ID      uint64 `json:"id"`
    Message string `json:"message"`
  }
)

func main() {
  app := iris.New()
  mvc.Configure(app.Party("/users"), configureMVC)
  app.Listen(":8080")
}

func configureMVC(app *mvc.Application) {
  app.Handle(new(userController))
}

type userController struct {
  // [...dependencies]
}

func (c *userController) PutBy(id uint64, req request) response {
  return response{
    ID:      id,
    Message: req.Firstname + " updated successfully",
  }
}

Want to see more? Navigate through mvc examples!

Learn what others saying about Iris and star this open-source project to support its potentials.

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

With your help, we can improve Open Source web development for everyone!

Donations from China are now accepted!

lensesio trading-peter basilarchia xiaozhuai AlbinoGeek celsosz TechMaster altafino thomasfr hengestone se77en vincent-li ansrivas sumjoe Juanses lexrus International li3p derReineke clacroix ixalender mubariz-ahmed rodrigoghm tuhao1020 macropas pitexplore xvalen mihado cshum mmckeen75 kilarusravankumar dtrifonov lpintes shadowfiga DmarshalTU DavidShaw IwateKyle lfbos marcmmx xytis srinivasganti Cesar olaf-lexemo skurtz97 jingtianfeng leandrobraga coderperu wahyuief Little-YangYang sankethpb pr123 saz59 icibiri MatejLach odas0r ElNovi KKP4 Lernakow Major2828 syrm ukitzmann kyoukhana spazzymoto siriushaha mark2b aprinslo1 kukaki t6tg oshirokazuhide ozfive agent3bood AwsIT vladimir-petukhov-sr motogo mizzlespot qiuzhanghua cnzhangquan Laotanling civicwar vguhesan iantuan paulxu21 vuhoanglam pitt134 goten002 rfunix leki75 rapita rxrw Neulhan kana99 saleebm fenriz07 gnosthi KevinZhouRafael hdezoscar93 knavels liheyuan acdias lingyingtan svirmi edwindna2 BlackHole1 SamuelNeves carlos-enginner nasoma rhernandez-itemsoft mnievesco Jude-X remopavithran mulyawansentosa MihaiPopescu1985 risallaw TianJIANG b2cbd Ubun1 hzxd unixedia sbenimeli khasanovrs lipatti baoch254 mattbowen SergeShin martinlindhe blackHoleNgc1277 netbaalzovf mtrense lfaynman vcruzato rbondi RainerGevers dochoaj thejones NA statik ArturWierzbicki nikharsaxena crashCoder gog200921 ndimorle shyyawn wangbl11 CSRaghunandan evan lauweliam letmestudy primadi hazmi-e205 edsongley GeorgeFourikis grassshrimp ky2s jtgoral L-M-Sherlock wofka72 xsokev mblandr oleang michalsz Curtman claudemuller SridarDhandapani midhubalan rosales-stephanie opusmagna b4zz4r nguyentamvinhlong theantichris fangli juanxme tejzpr bobmcallan geoshan tuxaanand galois-tnp narven raphael-brand Tang634724712 carlosmoran092 yangxianglong HieuLsw

📖 Learning Iris

Create a new project

$ mkdir myapp
$ cd myapp
$ go mod init myapp
$ go get github.com/kataras/iris/v12@master # or @v12.2.0-beta1
Install on existing project
$ cd myapp
$ go get github.com/kataras/iris/v12@master

Run

$ go mod tidy -compat=1.18
$ go run .

Iris contains extensive and thorough documentation 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 author on twitter

follow Iris web framework on twitter

follow Iris web framework on facebook

You can request a PDF and online access of the Iris E-Book (New Edition, future v12.2.0+) 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.