Skip to content

Latest commit

History

2,270 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Black Lives Matter

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.

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 statusview exampleschatdonate

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 (
requeststruct {
Firstnamestring`json:"firstname"`Lastnamestring`json:"lastname"`
}
responsestruct {
IDuint64`json:"id"`Messagestring`json:"message"`
}
)
funcmain() {
app:=iris.New()
app.Handle("PUT", "/users/{id:uint64}", updateUser)
app.Listen(":8080")
}
funcupdateUser(ctx iris.Context) {
id, _:=ctx.Params().GetUint64("id")
varreqrequestiferr:=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.

MVC
package main
import (
"github.com/kataras/iris/v12""github.com/kataras/iris/v12/mvc"
)
type (
requeststruct {
Firstnamestring`json:"firstname"`Lastnamestring`json:"lastname"`
}
responsestruct {
IDuint64`json:"id"`Messagestring`json:"message"`
}
)
funcmain() {
app:=iris.New()
mvc.Configure(app.Party("/users"), configureMVC)
app.Listen(":8080")
}
funcconfigureMVC(app*mvc.Application) {
app.Handle(new(userController))
}
typeuserControllerstruct {
// [...dependencies]
}
func (c*userController) PutBy(iduint64, reqrequest) response {
returnresponse{
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!

Paul XuDavid ShawStone TravelTanAndre DiasRafael FrancischiniHeyuan LiRainer GeversMatic ZarnecNavid DezashibiSky LeeRichard BondiAnthonius PrinsloVladimirGeorge FourikisАлександр ЛебединскийLi YangQianyu ZhouanilpdvCAO HOAI BAOOscar HernandezGerard LanceaneulhanxushiquanMattĽuboš PintešLeighton McKeenWeliamsimranjit singhKenneth JordanMorlé KoudekaRuiCarlos AugustoHorst EnderPavithranMULYAWAN SENTOSAKIT UNITEDRicardo Hernandez LopezChinChuanKuoNikhar SaxenaServio ZambranoNate AndersonClaude MullerMarco MoeserSanketh P BVu Hoang LamDimitar TrifonovMidhubalan BalasubramanianAANAND NATARAJANEdsongley AlmeidaganbenTejus Pratapcui hexiangtinawangJuan David Parra PimientoAndy Chong Ying ZhiKevin ZhouJasperSimranjit SinghChristopher Lamm叶峻峣TSAI LI TINGzhutaoGeorge AlexiouJobert AzaresTam Nguyen
Venkatt GuhesanAnibal C C BudayeARAN ROKAValentineChakravarthy RaghunandanMassimiliano BertinettiHieu TrinhJ.T. FengGabor LekenyLiHaotianMuyang LiHao TuCetin BasozHazmi AmalulRémy DemeVincent LiMax TrenseMatej LachJoseph De PaolaDamon Blais陆 轶丰Weihang DingLi FangTechMasterlenses.ioCelso SouzaAltafinoThomas FritzConrad SteenbergDamon ZhaoGeorge OpritescuJuansesAnkur SrivastavaLex Tangli3p

📖 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-alpha2
Install on existing project
$ cd myapp
$ go get github.com/kataras/iris/v12@master
Install with a go.mod file
module myapp
go 1.16
require github.com/kataras/iris/v12 master

Run

$ go mod download
$ go run main.go
# OR just:# go run -mod=mod main.go

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.

About

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 |

Resources

Code of conduct

Contributing

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages