forked from kataras/iris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.go
38 lines (23 loc) · 989 Bytes
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
Package iris implements the highest realistic performance, easy to learn Go web framework.
Iris provides a beautifully expressive and easy to use foundation for your next website, API, or distributed app.
Low-level handlers compatible with `net/http` and high-level fastest MVC implementation and handlers dependency injection.
Easy to learn for new gophers and advanced features for experienced, it goes as far as you dive into it!
Source code and other details for the project are available at GitHub:
https://github.com/kataras/iris
# Current Version
12.2.0
# Installation
The only requirement is the Go Programming Language, at least version 1.20.
$ go get github.com/kataras/iris/v12@latest
Wiki:
https://www.iris-go.com/#ebookDonateForm
Examples:
https://github.com/kataras/iris/tree/master/_examples
Middleware:
https://github.com/kataras/iris/tree/master/middleware
https://github.com/iris-contrib/middleware
Home Page:
https://iris-go.com
*/
package iris