[Nomad Coin] Explorer - #5.0 Setup
#5.0 Setup Go로 Server-side 렌더링 웹사이트를 어떻게 만드는지 알아보자 하나의 library만 있으면 된다. 다른 언어에 비하면 쉽다. 먼저 http.ListenAndServe()를 쓴다. 이 함수는 string address랑 지금은 안 쓸거지만 handler를 필요로 한다. 나중에 handler가 뭔지 볼 것이다. package main import "net/http" const port string = ":4000" func main() { http.ListenAndServe(port, nil) } 여기에 port를 넣고 handler는 없다. 서버를 여는 것은 매우 간단하다. go run main.go를 입력하면 서버가 열린 것이다. 서버가 listening 중인 걸 알 수 있..
Go/Blockchain
2022. 7. 16. 04:25