03. route, res, req - seongjunhwang/clone_youtube GitHub Wiki
route
app.get("/", handleHome);
- get, post ๋ฑ ์ ์ ํ ๋ฐฉ์์ผ๋ก ํธ์ถ
- "/"์ ๊ฐ์ด routeํ ์ฃผ์ ์ ๋ ฅ
- ํด๋น ์ฃผ์ ์ ์ ์ ํธ์ถํ ํจ์ ์ ๋ ฅ
function handleHome(req, res) {
console.log(req);
res.send("hello from home");
}
- ํจ์ ํธ์ถ ์ req, res ์ธ์๊ฐ์ ๋ฐ์
- req object์์ ํ์ํ ๋ฐ์ดํฐ๋ฅผ ์ถ์ถ
- res ์์ ํ์ํ method ํธ์ถ ๋ฐ ์ฌ์ฉ