본문 바로가기
Develop/Node.js

Simple Node.js HTTP Server

by J0DEV 2021. 8. 6.
반응형

간단한 Node.js 웹 서버를 만들어보자.

개발 환경은 공신 홈페이지 또는 다른 블로그에 잘 설명되어 있다.

아래의 코드를 동작시키면 된다.

//app.js

var http = require("http");

http.createServer(function(request, response) {

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

 response.write("hello World");

 response.end();

}).listen(8888);

console.log('Server running at http://localhost:8888/');

 

.listen(8888)은 포트이다.

.listen(port)

 

 

node app.js 로 실행시켜주면

 

쉘창에 console.log로 지정해준 문구가 출력된다.

 

port를 8888로 설정했으므로 localhost:8888 로 들어가면 된다.

 

 

 

반응형

'Develop > Node.js' 카테고리의 다른 글

Node.js 개발환경  (0) 2021.08.12
Node.js란?  (0) 2021.08.12