app01.js
620 Bytes
"use strict"
var http = require('http'); // http라는 이름의 변수를 선언. require는 이 함수를 쓰겠다 라고 요청을 함. 기존에 있던 http를 사용하겠다는 요청
var server = http.createServer(function(req, res) {
res.writeHeader(200, {"Content-Type": "text/HTML"}); // HTML 태그를 사용하고 싶으면, text HTML을 함
res.write("<h1>Hello World</h1>");
res.end();
});
// 이 서버는 listen을 하는데 3000번 포트에서 listen 을 하고, 콘솔에 로그를 찍으라.)
server.listen(3000, function() {
console.log("Sever listeining on http://localhost:3000");
});