0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

GoのEchoの環境を構築してみる(Macのローカルに直接構築)

Last updated at Posted at 2024-09-28

概要

Macのローカルに直接GoのEchoの環境を構築する方法をまとめる。

前提

下記の内容が完了していること。

内容

  1. 任意のディレクトリにtest-local-echo-appというディレクトリを作成、作成したディレクトリにターミナルで移動

  2. 下記を実行してGoのモジュールを初期化(go: creating new go.mod: module test-local-echo-appと返れば正常っぽい)

    go mod init test-local-echo-app
    
  3. 下記を実行してEchoのインストールを実施

    go get -u github.com/labstack/echo/v4
    
  4. test-local-echo-appのディレクトリルートにmain.goのファイルを作成し、下記のように記載

    main.go
    package main
    
    import (
        "net/http"
        "github.com/labstack/echo/v4"
    )
    
    func main() {
        e := echo.New()
    
        e.GET("/", func(c echo.Context) error {
            return c.String(http.StatusOK, "Hello, Echo!")
        })
    
        e.Start(":8080")
    }
    
  5. $ go run main.goを実行してサーバーを起動

  6. http://localhost:8080にアクセスし下記の様に「Hello, Echo!」の文字がでれば完了

    CleanShot 2024-09-28 at 11.45.17.png

参考文献

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?