Express.js
Express를 왜 사용해야하는 가? 1. 웹서비스 관점 프레임워크 없이 웹서버를 띄운다-> http 내장 모듈, url 호출 등등 세션처리 방법이 귀찮다. Express.js의 Middle Ware -> 개발 방법론을 제약할 수 있다. "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." -https://expressjs.com/en/guide/using-middleware.html 여기서 미들웨어 함수는 req(요청) 객체, res(응답) 객..
2021.05.30