사용방법

  • 사용방법은 간단한다
import express from 'express'
const app = express()

// 라우터의 경로와 콜백함수 사이에 원하는 미들웨어를 집어넣으면 된다
app.use('/', middleware, (req, res, next)=>{
})


// 콜백함수 3번째에 next를 넣고 호출하게 되면 다음 라우터로 데이터 값이 자동으로 넘어간다
app.use('/', (req, res, next) => {
    
    next() // next() 함수로 다음 단계의 라우터로 넘어간다
})

Application-level middleware

import express from 'express'
const app = express()

app.use('/',   )


Router-level middleware

Error-handling middleware