Node.js
-
Hello Node!!
const http = require('http'); http.createServer((req, res)=>{ res.write('Hello Node!\n'); res.end('jinhwan'); }).listen(3000, ()=>{ console.log('listen in port 3000'); }) - 클라이언트에서 서버로의 요청을 req 변수에 담고, 서버는 req 변수를 처리하여 클라이언트에 응답한다.
res.write는 클라이언트에 보낼 데이터를 argument로 받아 body에 전송하고, res.end는 argument('jinhwan')를 클라이언트에 보낸 후 응답을 종료한다.