해결된 질문
작성
·
407
0
const http = require('http');
const host = 'localhost';
const port = 3000;
const server = http.createServer((req, res) => {
res.writeHead(200, {'Content-Type': 'text/html'});
res.send('<h1>Hello World</h1>');
});
server.listen(port, host, () => {
console.log('Server running on http://localhost:3000...');
});
TypeError: res.send is not a function
이런 에러가 발생하는데 이유를 알 수 있을까요?