http://nodejs.org/#download

접속 후 윈도우 인스톨 버전을 다운로드 후 설치
cmd 창에서 node 실행

ex>
C:> node
>

라는 화면이 출력 정상적으로 출력 되지 않으면 컴퓨터를 재시작 해서 다시 시도 해봅니다.

1. 콘솔에서 데이터 출력 테스트
ex>
C:> node
> console.log('hello world');
hello world

2. 파일로 데이터 출력 테스트
test.js 파일을 생성하고 해당 페이지에

console.log('hello world');
를 입력 후 저장 파일이 저장된 폴더로 이동 후
ex>
C:\nodejs> node test.js
hello world

3. 웹페이지에 데이터 출력 테스트

test.js파일의 내용을 아래와 같이 수정
/////////////////////////////////////////////
var http = require('http');

http.createServer(function(req,res){

 res.writeHead(200,{'Content-Type':'text/plain'});

 res.end('Hello World\n');

}).listen(80,"127.0.0.1");

console.log("test url http://127.0.0.1/");
/////////////////////////////////////////////

ex>
C:\nodejs> node test.js
test url http://127.0.0.1/

웹페이지에서 url을 호출 하면 프로그램이 데이터 출력 확인이 가능 합니다.

 

반응형
Posted by 질주하는구
,