[노드 2팀] #6. http 모듈로 서버 만들기 & 패키지 매니저
🌟키워드: 요청과 응답, REST, 쿠키, 세션, https, cluster, npm, package.json 1. 요청과 응답서버에는 요청을 받는 부분과 응답을 보내는 부분이 있어야 한다.요청 & 응답은 이벤트 방식이므로, 이벤트 리스너를 미리 등록해둬야한다. 노드 서버를 만드는 코드const http = require('http');http.createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/html; charset=utf-8' }); res.write('Hello Node!'); res.end('Hello Server!');}) .listen(8080, () => { // 서버 연결 console.log('..
24-25/Node.js 2
2024. 11. 15. 10:00