// index2.js

=====================================

const express = require('express')

const app = express()

 

const mw = (req, res, next) => {

console.log('mw!')

next() // 이걸 꼭 붙여야함, 그래야 이 다음 미들웨어 혹은 어플리케이션을 실행할 수 있음

}

 

const mw2 = (req, res, next) => {

console.log('mw2!')

next() // 이걸 꼭 붙여야함, 그래야 이 다음 미들웨어 혹은 어플리케이션을 실행할 수 있음

}

 

app.use(mw)

app.use(mw2)

 

app.listen(3001, () => console.log('running2'))

=====================================

 

0. express를 사용하기 위해 npm install을 진행한다.

npm i express

 

1. 호스트 세션

node ./index2.js

 

2. 클라이언트 세션

curl 127.0.0.1:3000

curl 127.0.0.1:3000/test

 

입력시 다음과 같이 로그 발생하면 정상

 

 

+ Recent posts