이전에 로그인 / 로그아웃을 구현하지 않으셨다면 아래의 포스팅을 봐주세요! https://develop-const.tistory.com/22 NestJs 회원가입(비밀번호 암호화), 로그인 구현하기 인증관련부분은 다음시간에 구현하고, 먼저 회원가입과 로그인기능에 대해 구현해보겠습니다. auth와 user 파일을 간단하게 생성 nest g resource auth nest g resource user user [ user/entities/user.entitiy.ts ] impor develop-const.tistory.com 토큰을 사용해 api 호출하는 흐름 1. 클라이언트는 서버에 로그인 요청을 합니다. 2. email과 password가 맞는지 검증한후 맞다면 access 토큰을 발급해 전달합니다 3..