[Ubuntu] 우분투에 Vue.js 개발환경 세팅하기
우분투에 Vue.js 개발환경 세팅하기 nvm, node, npm의 설치 nvm 설치 가장 먼저 할 일은 nvm의 설치이다. 다음 명령어를 통해 nvm을 설치한다. curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash 위 명령어는 자주 쓰는 것이기 때문에 아예 외워 버리자, 다음과 같이 나눠서 외우면 된다. curl -o- -o: --output -: filename context 즉, install.sh로 저장한다는 뜻 https://raw.githubusercontent..