cookieParser

    Node.js morgan, cookieParser, static

    Node.js morgan, cookieParser, static bodyparser 는 이제 안 쓴다. 쓰면 옛날 사람 morgan 모듈 const morgan = require('morgan'); app.use(morgan('dev')); morgan – 요청과 응답을 기록하는 라우터 morgan은 어딜 가면 get, 시간등 여러 정보가 나타난다. 요청을 받았을 때 어떻게 응답했는지 알 수 있다. 에러가 나도 에러 로그를 본다. dev – 요청과 응답 combined – 시간, ip 주소까지 다 뜸 개발할 때는 보통 dev로 많이 사용 cookieParser const cookieParser = require('cookie-parser'); app.use(cookieParser()); // 익스프레스..