[TOC]
  • Installation

Installation

Iris is a cross-platform software.

The only requirement is the Go Programming Language, version 1.14 and above.

$ mkdir myapp$ cd myapp$ go mod init myapp$ go get github.com/kataras/iris/v12@master

Import it in your code:

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