Node.js 서버 구축 - (3) Git Source 가져오기 및 Node.js 실행 sudo apt-get update 2. node.js 설치 명령어 입력 - Y 입력 sudo apt-get install nodejs 3. 기존 Git 코드 가져오기 Git에서 가져올 기존 소스 Clone or download 클릭 -> Clone URL 복사 -> PuTTY에서 명령어 입력 ( PuTTY에서 우클릭하면 붙여넣기 가능) git clone https://github.com/KangG/4989_aws.git 4. 폴더 이동 cd dir_name 5. 실행 파일 권한 변경 chmod 755 file_name 6. node 실행 node app_pool.js 7. 웹 페이지 접속 퍼블릭DNS:포트번호/로 접..