Node.js + MongoDB 설치 및 mongoose 연동 서버 환경 : AWS(EC2) Ubuntu16.04 LTS 버전 사용 1. Node.js 설치 1) Node.js 설치# Using Ubuntu curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash - sudo apt-get install -y nodejs cmd 창에서 위의 내용과 같이 작성해주면 설치 끝.(여러 블로그에서 설치 및 사용방법에 대해 잘 설명해주지만, 뭐니뭐니해도 해당 홈페이지에서 읽어보는게 가장 확실한 방법인 것 같다.)출처 : https://github.com/nodesource/distributions/blob/master/README.md 2) npm 설치- No..