저는 AWS EC2에 ubuntu를 설치했습니다. 그래서 ubuntu에서 node 설치하는 방법과 개발하는 방법을 작성하려 합니다.
먼저 Node.js 홈페이지에 가서 DOWNLOADS (https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions)에서 아래 코드를 복사합니다.
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install -y build-essential
터미널을 열어서 실행하게 되면 설치가 끝납니다. 제대로 설치가 됐는지 확인하기 위해서 node -v 라고 입력하면 아래와 같이 버전 정보가 나오면 잘 설치되었습니다.
$ node -v
$ v5.2.0
node 설치가 끝나면 npm을 설치해야 합니다.
npm(https://www.npmjs.com/) 은 Node Packaged Modules 로써 필요한 node 모듈들을 설치하는 패키지 매니저입니다. (a package manage for JavaScript)
$ sudo apt-get install npm
모든 프로그래밍의 시작인 hello world를 실행해보도록 하겠습니다.
원하는 경로로 이동 후 hello.js 파일을 만들고 그 안에 내용을 넣고 저장을 합니다.
console.log('hello world');
이제 터미널을 키고 hello.js를 실행시킵니다.
$ node hello.js
hello world
hello world 가 출력되면 끝.
파일을 직접 안만들고 바로 테스트 할 수도 있습니다.
$ node
> console.log('hello world');
hello world
undefined
실행된 node를 종료하는 방법은 ctrl + c를 2번 누르면 종료하게 됩니다.
'node.js & express' 카테고리의 다른 글
5. 폼(form)에서 데이터 받기. (0) | 2016.01.13 |
---|---|
4. express 템플릿 만들기 application generator (0) | 2016.01.11 |
3. Node.js 프레임워크인 express 설치하기 (0) | 2016.01.08 |
2. Node.js 를 웹 서버로 실행하기. (0) | 2016.01.06 |