Golang REST API 만들기
오늘은 Golang으로 간단한 REST API를 만드는 방법을 쓸까 한다. 바로 시작하자 우선은 Directory를 하나 만들고 시작 mkdir rest go module 등록 go mod init noah.io/ark/rest main.go 생성 touch main.go Directory 구조 tree . ├── go.mod └── main.go main.go package main func main() { } 정말 간단하게 만들거라 위 구조에서 변경되는 건 없을 듯하다. http 패키지를 이용해 우선 서버를 띄워보자. package main import "net/http" func main() { http.ListenAndServe(":8080", nil) } 이렇게만 하면 포트 8080인 서버를 하..
Golang
2021. 8. 5. 23:24
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- docker run redis
- docker postgres
- golang api
- docker redis container
- postgresql db dump
- golang 파일 압축
- golang REST API example
- golang 디렉터리 압축
- pg db dump
- db dump
- postgres images
- docker run redis-server
- pg dump
- golang http
- golang rest api
- golang http decode
- golang file compress
- docker redis image
- golang rest api server
- docker redis
- golang 압축
- postgresql dump
- golang directory compress
- docker run redis-cli
- postgres container
- golang 폴더 압축
- golang request body decode
- golang http encode
- golang web api
- docker run postgres
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함