Backend/Express

    [Express] 커스텀 미들웨어 적용기

    최근 비즈니스 로직을 수정하던 중, 라이브러리로만 적용하던 Express의 Middleware를 커스터마이즈해서 유용하게 사용했기에 기록으로 남긴다. # Middleware란? 참조 : Express 공식문서 Writing middleware for use in Express apps Writing middleware for use in Express apps Overview Middleware functions are functions that have access to the request object (req), the response object (res), and the next function in the application’s request-response cycle. The next fu..