1. 에러 원인 It happen because your password field on database have just a string, not a hashed string. 데이터베이스에 bcrypt 로 저장할때 hash string 이 아닌 일반 string 으로 저장이 되어서 발생하는 에러이다 2. 해결방법 hash 스트링 형태로 변형하여 넣으면 되는데 나의 경우에는 아래와 같이 했다. 1) bycrypt 모듈 설치 npm install bcryptjs 2) gensalt 로 salt 값 생성 후, 그 값을 hash 로 넘겨서 hash string 로 만들어 저장 bcrypt.genSalt(saltRounds, function(err, salt) { bcrypt.hash(myPlaintextPa..