1. node.js 다운로드 (https://nodejs.org/download/)
2. node.js 설치
3. node.js 버전 확인
시작 > 실행 > cmd > node --version
4. node.js 샘플 코드 작성
helloworld.js
// http server를 생성하기 위한 http 모듈 불러오기
var http = require('http');
// Configure our HTTP server to respond with Hello World to all requests.
// HTTP 서버 설정 - 모든 요청에 대해 Hello World로 응답
var server = http.createServer(function (request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.end("Hello World\n");
});
// 포트 8000, IP는 기본값인 127.0.0.1
server.listen(8000);
// 터미널에 메시지 출력
console.log("Server running at http://127.0.0.1:8000/");
5. helloworld.js 실행
cd Documents
node helloworld.js
2. 브라우저로 접속 (127.0.0.1:8000)
참고
'Node.js' 카테고리의 다른 글
[node.js] HTTP Digest 인증 (0) | 2015.05.09 |
---|---|
[node.js] 이벤트 (0) | 2015.05.05 |
[node.js] HTTP 동시 접속 성능 테스트 (0) | 2015.05.05 |
[node.js] 특징 (0) | 2015.05.05 |
[node.js] require() 그리고 module.exports (0) | 2015.05.05 |