nugawiki

./categories/back-end

Go RESTful JSON API

업데이트 2026-07-21 조회수

프로젝트 골격

mkdir go-rest-api && cd go-rest-api
touch main.go
go build
./go-rest-api
  • package main + func main: 실행 진입점

Gorilla Mux 라우팅

go get -u github.com/gorilla/mux
  • 요청 라우터. / 핸들러 연결 후 http://localhost:8080 에서 실행

./comments