[기록] Final Project_2021.05.12
Profile, Recruit 기능을 팀원과 나누어서 작업했습니다. 그리고 우리에게 필요한 middleware를 구현하여 서버에 추가했습니다. 오늘은 어떻게 프로젝트에 기여했나요? Bare Minimum ▷ route 세팅 - controller 하위 폴더 생성하기 - 한 요청당 하나의 파일로 만들기 - router 연결하기 const profileRouter = express.Router(); // 프로필 정보 조회 profileRouter.get('/profile', controller.getProfile); // 프로필 정보 저장/수정 profileRouter.post('/profile', controller.postProfile); export default profileRouter; Login ..