1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
const http = require('http');
const server = http.createServer((req,res) =>{
console.log(req.url,req.method,req.headers);
//process.exit();
res.setHeader('Content-Type','text/html'); // 내용을 text 타입 html 형식으로 보낼게
res.write('<html>')
res.write('<head><title>안녕,클라이언트에 다시 요청 보내는중입니다</title></head>') // hrml 타이틀과 헤더부분
res.write('<body><h1>hello print</h1></body>') // body 부분에 서버에 나올 내용값 입력 ~
res.write('</html>')
res.end(); // 서버에서 >> 클라이언트로 보내는거 여기에서 중단할게용
})
server.listen(3000); // node.js 가 들어오는 요청에대해서 계속 데이터 받기
|
cs |
'기존 > 🏀Node' 카테고리의 다른 글
[Node.js] npm스크립트 npm start (0) | 2022.06.07 |
---|---|
[Node.js] Express.js 란 ? (0) | 2022.06.07 |
[Node.js] form 요청 (0) | 2022.06.07 |
Node.js 이벤트루프//라이프싸이클 서버 종료 (0) | 2022.06.07 |
[Node.js]서버 생성하기 (0) | 2022.06.04 |