1) Node.js 설치
Node.js 공식 홈페이지에서 LTS를 다운 받으시는게 안정적일 것 같습니다.
다운 받고 설치합니다.
리눅스 데비안 또는 우분투에서 설치하기. (실행하기 위해서는 curl이 필요하다)
curl --silent --location https://rpm.nodesource.com/setup_.x | bash -
sudo apt-get install nodejs
curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -
sudo apt-get install nodejs
curl --silent --location https://rpm.nodesource.com/setup | bash -
설치가 완료되면 cmd 창에서 node --version 명령어를 실행하여 노드가 잘 설치되었는지 확인합니다.
2) 확인
노드가 잘 실행되는지 확인하기 위해 "Hello World"를 출력 해보겠습니다.
텍스트에디터를 실행하여, 적절한 경로에 test_node.js 파일을 생성합니다.
Node는 .js 확장자로 파일을 만들어서 실행할 수 있습니다.
test_node.js 파일 안에 아래와 같이 작성해봅시다.
console.log("Hello World!!");
다음으로 커맨더 창에서 프로젝트 파일이 있는 곳으로 이동을 한 후, node test_node.js를 명령어를 실행합니다.
커맨더 창에 Hello World!가 되는 출력 되는 것을 확인할 수 있습니다.
2-1) 확인
const http = require('http');
http.createServer((req, res) => {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello, World!\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
저장하고 터미널 에서 node test_node.js 이라고 입력해주고 나서 브라우저 켜고 localhost:1337로 들어가면 'Hello, world!'라고 출력됩니다.
이상으로 Node.js를 설치하여, Hello World!를 출력해보았습니다.