개요
오랜만에 구름 IDE 를 이용하여 Angular 앱을 개발하고자 하였습니다. ng new
명령어를 사용하여 App 을 생성하려고 하니 아래와 같이 Node.js 의 버전을 갱신하라는 메시지를 얻게 되었습니다.
You are running version v6.11.0 of Node.js, which is not supported by Angular CLI v6.
The official Node.js version that is supported is 8.9 and greater.
Node.js 와 npm 업그레이드
※ 구름 IDE의 환경은 Ubuntu 14.04입니다.
다음의 절차로 NodeJs 를 업그레이드 합니다.
$ node -v # 설치된 Node.Js 버전 확인
6.11.0
# nvm을 설치합니다.
$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
구름 IDE Terminal을 다시 실행합니다. (터미널의 Refresh 버튼을 누릅니다.)
$ command -v nvm # 설치가 잘 되었는지 확인합니다.
nvm
$ nvm install --lts # 현재(18.7.21) 안정버전설치
Installing latest LTS version.
Downloading and installing node v8.11.3...
Downloading https://nodejs.org/dist/v8.11.3/node-v8.11.3-linux-x64.tar.xz...
######################################################################## 100.0%
Computing checksum with sha256sum
Checksums matched!
Now using node v8.11.3 (npm v5.6.0)
$ node -v # 설치된 버전 재확인
v8.11.3
node 의 최신 버전을 설치하기 원한다면, --lts
대신, node
를 입력합니다.
참고
'개발도구 > 구름 IDE' 카테고리의 다른 글
Goorm IDE Quick Tutorial (for Development Angular) (0) | 2019.01.13 |
---|---|
JavaScript 학습을 위한 환경구성 (0) | 2018.05.27 |