http 모듈을 이용해서 서버로 온 요청에 대한 응답을 보낼 때 http 헤더에 Content-Type이라는 필드를 지정할 수 있다.
http
.createServer((req, res) => {
try {
const template = fs.readFileSync("./index.html");
res.writeHead(200, {
"Content-Type": "text/plain; charset=utf-8",
});
res.write(template);
res.end();
} catch (err) {
console.log(err);
}
})