1. NVM 설치
Ubuntu에 Node.js를 설치하기 위해 NVM - node version manager - 를 설치할 것이다.
공식 github에서 버전을 확인 한 후, 설치한다.
https://github.com/nvm-sh/nvm/#install--update-script
아래 명령어들로 설치할 수 있다. 나의 경우, react native와 같이 사용할 것이기 때문에 13.6 버전을 설치했다.
# 버전은 공식 git에서 확인 한 후 변경
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/vx.xx.x/install.sh | bash
source ~/.bashrc
nvm install node # 최신 버전 설치
nvm install xx.xx # 특정 버전
# node 설치 확인
node -v
# npm 설치 확인
npm -v
2. typescript + express 설치
기본적으로 node.js의 서버 구성을 만들어 주는 express에서 typescript를 이용할 예정이기 때문에 typescript-express-starter라는 npm을 이용해 시작할 것이다. 설치는 아래 공식 문서의 quick start를 따라가면 된다.