inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

Jong lee님의 블로그

Jong lee Jong lee

@cyberpsychosis

수강평 작성수
1
평균평점
4.0

블로그 3

노드 리액트 기초 강의 #13 mongoose methods statics 차이

노드 리액트 기초 강의 #13 mongoose methods statics 차이

in mongoose, I made method using methods and statics. What is the difference? In Mongoose, the methods object on a schema is used to add instance methods, which are available on all documents of that ...

좋아요수
0
  • 웹 개발
  • mongoose
 노드 리액트 기초 강의 #11 로그인 기능 with Bcrypt (1)

노드 리액트 기초 강의 #11 로그인 기능 with Bcrypt (1)

User.js userSchema.pre('save', function (next) { var user = this //비밀번호를 암호화 한다. if (user.isModified('password')) { // 기존 데이터의 비밀번호를 바꿀 때는 적용 안된다. const saltRounds = 10; bcrypt.hash(user.password, sal...

좋아요수
0
  • 백엔드
  • node.js