Backend Develop/Go(2)
-
VSCODE 개발환경 셋팅
go lang 설치 http://golang.org/dl Downloads - The Go Programming Language Downloads After downloading a binary release suitable for your system, please follow the installation instructions. If you are building from source, follow the source installation instructions. See the release history for more information about Go releases golang.org go lang이 설치되면 GOROOT는 환경 변수에 등록이 된다. GOPATH는 환경 변수를 등록해야 한..
2020.05.19 -
Go Lang 시작하기
Go lang은 2007년 구글에서 만든 언어 이다. Go lang의 주요 특징은 아래와 같다. 정적 타입 시스템 하나의 바이너리로 컴파일 가능 빠른 속도로 컴파일이 가능하며 퍼포먼스가 좋다. 웹 프레임워크가 따로 필요 없다. IDE가 잘 되어 있고 디버깅이 쉽다. 하지만 단점으로 아직 자바나 파이썬과 같이 라이브버리가 많이 있지 않고 따라서 한글 자료도 더더욱 적다. 많은 장점이 있고 무엇보다 구글이 개발한 만큼 앞으로 성장 가능성이 굉장히 큰 언어라고 생각된다. 앞으로 개발에 사용할 IDE는 vscode를 이용할 예정이다.
2020.05.19