We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d899094 commit 45ac9fcCopy full SHA for 45ac9fc
website/content/guide.md
@@ -13,16 +13,22 @@ type = "guide"
13
14
### Installation
15
16
+To install Echo Go v1.13 or higher is required. Go v1.12 has limited support and some middlewares will not be available.
17
+Make sure your project folder is outside your `$GOPATH`.
18
+
19
```sh
20
+$ mkdir myapp && cd myapp
21
+$ go mod init myapp
22
$ go get github.com/labstack/echo/v4
23
```
24
-If you are working with a Go v1.14 or earlier use:
25
+If you are working with Go v1.14 or earlier use:
26
27
28
$ GO111MODULE=on go get github.com/labstack/echo/v4
29
30
31
32
### Hello, World!
33
34
Create `server.go`
0 commit comments