node.js를 설치해서 간단한게 사용해 봅니다. | |
나의 폴더 > ASP.NET MVC | 2014-01-16 (Thu) 15:06 | http://blog.dreamwiz.com/papasmf1/14018697 |
1. http://nodejs.org/
주소에서 설치본을
받는다. 약 5메가 정도의 파일을 받으면 된다.
2. 도스창을 열어서 c:\program
files\nodejs폴더로 이동한다. 여기에
Node node.basic.js파일을 실행하면
된다.
(node.basic.js)
console.log(‘hello world’);
3. 이번에는 웹 서버를 만들어 본다.
(node.server.js파일로 저장한다.)
//모듈을 추출한다.
var http =
require('http');
//웹 서버를 생성 및
실행한다.
http.createServer(function (request, response)
{
response.writeHead(200, { 'Content-Type': 'text/html'
});
response.end('<h1>Hello
world</h1>');
}).listen(52273, function ()
{
console.log('Server running at http://127.0.0.1:52273/');
});
4. 실행하면 아래와 같이 실행된다.
도스창에서 node node.server.js로 실행한다.
|
댓글 없음:
댓글 쓰기
참고: 블로그의 회원만 댓글을 작성할 수 있습니다.