Iris 是Go的快速、简单和高效的微网框架。 它为您的下一个网站,API或分布式应用程序提供了一个精美的表达和易于使用的基础。
Iris 特性:
- 跨平台 -- 编写一次并在任何地方运行,如Android、ios、Linux和Windows等,以最小的主机功率运行。
- 使用方便 -- 它支持Google Go,在所有平台上只有一个可排除的服务。 Iris 以简单而强大的 api 而闻名。
- 面向服务 -- Iris为您提供构建面向服务的应用程序的结构。 用 Iris 构建微服务很容易。
Iris是Go的快速、简单和高效的微型Web框架。(Iris is a fast, simple and efficient micro web framework for Go. )
Iris 是Go的快速、简单和高效的微网框架。 它为您的下一个网站,API或分布式应用程序提供了一个精美的表达和易于使用的基础。
Iris 特性:
名称与所有者 | kataras/iris |
---|---|
主编程语言 | Go |
编程语言 | Go (语言数: 7) |
平台 | BSD, Linux, Mac, Windows |
许可证 | BSD 3-Clause "New" or "Revised" License |
创建于 | 2016-01-30 04:36:48 |
---|---|
推送于 | 2025-10-01 04:02:28 |
最后一次提交 | |
发布数 | 22 |
最新版本名称 | v12.2.11 (发布于 ) |
第一版名称 | v12.0.0 (发布于 ) |
星数 | 25.6k |
---|---|
关注者数 | 674 |
派生数 | 2.5k |
提交数 | 2.8k |
已启用问题? | |
问题数 | 1008 |
打开的问题数 | 128 |
拉请求数 | 391 |
打开的拉请求数 | 7 |
关闭的拉请求数 | 388 |
已启用Wiki? | |
---|---|
已存档? | |
是复刻? | |
已锁定? | |
是镜像? | |
是私有? |
Iris version 12.1.5 has been released!
The official Iris Command Line Interface will soon be near you in 2020!
Support your favorite web framework through Github Sponsors Program!
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.
# https://github.com/kataras/iris/wiki/Installation
$ go get github.com/kataras/iris/v12@latest
# assume the following code in example.go file
$ cat example.go
package main
import "github.com/kataras/iris/v12"
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.
You can request a PDF version and online access of the E-Book today and be participated in the development of Iris.
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.
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.
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.