doc.go 986 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. Package iris implements the highest realistic performance, easy to learn Go web framework.
  3. Iris provides a beautifully expressive and easy to use foundation for your next website, API, or distributed app.
  4. Low-level handlers compatible with `net/http` and high-level fastest MVC implementation and handlers dependency injection.
  5. Easy to learn for new gophers and advanced features for experienced, it goes as far as you dive into it!
  6. Source code and other details for the project are available at GitHub:
  7. https://github.com/kataras/iris
  8. # Current Version
  9. 12.2.10
  10. # Installation
  11. The only requirement is the Go Programming Language, at least version 1.21.
  12. $ go get github.com/kataras/iris/v12@latest
  13. Wiki:
  14. https://www.iris-go.com/#ebookDonateForm
  15. Examples:
  16. https://github.com/kataras/iris/tree/main/_examples
  17. Middleware:
  18. https://github.com/kataras/iris/tree/main/middleware
  19. https://github.com/iris-contrib/middleware
  20. Home Page:
  21. https://iris-go.com
  22. */
  23. package iris