Middleware
미들웨어는 req와 최종 res 사이에 존재하는 중간 단계로 로그 기록, 보안 절차 등의 역할을 수행한다. express와 관련된 middleware를 다뤄서 여기에 작성했지만 사실 일반 명사이다. mongoose에도 미들웨어가 있고 django에도 미들웨어가 있고 어디에서나 미들웨어를 찾아볼 수 있다. 간단하게 미들웨어를 만들어보자 import express from "express"; const app = express(); const PORT = 4000; const handleListening = () => console.log(`Listening on: http://localhost:${PORT}`); const handleHome = (req, res) => res.send("home"); c..