요청에 대한 로그를 남기는 미들웨어 생성하기

Untitled

// Middleware
app.use((req, res, next) => {
  console.log(`${req.method} ${req.url}`);
  next();
});

미들웨어 좀 더 자세히 보기

Untitled

// Middleware
app.use((req, res, next) => {
  const start = Date.now();
  console.log(`${req.method} ${req.url}`);
  next();

  const diffTime = Date.now() - start;
  console.log(`${req.method} ${req.url} ${diffTime}`);
  // 메인 task를 처리한 뒤, next() 뒷 부분을 호출합니다.
});

// GET /some_html 7ms
// GET /users 2ms

Untitled