rotate를 사용할 때 문제는 글자가 제자리에서 각도가 변하는 것이 아니라 블럭 전체를 rotate 시키기 때문에 아래의 1번 그림처럼 나타난다. 대신 css 에서 내장된 property로 writing-mode:vertical-rl
을 사용하면 2번 그림 처럼 글자가 제대로 보인다. 영문은 추가적으로 text-orientation: upright
를 작성해줘야 한다.
schema.methods.customMethod = function(){}
: 모델 인스턴스에 커스텀 메서드를 추가하고 싶을 때 사용
schema.statics.customMethod = function(){}
: 모델 클래스명으로 커스텀 메서드를 추가하고 싶을 때 사용
schema.pre(method, callback)
: sequelizse의 beforeCreate 처럼 mongoose도 pre 메서드를 사용하여 hook을 제공해줌
bcrypt.genSalt(saltRound)
: saltRound(salt 길이) 만큼 salt 생성 bcrypt.hash(plainPassword,salt)
: salt와 passwoard를 해싱 (암호화) bcrypt.compare(plainPassword,DBPassword)
: 패스워드를 암호화하여 DB에 저장된 패스워드와 동일한지 비교 app.get('/',auth, (req,res)=>{});
_.go(users, _.filter((user)=> user.age > 10), _.get('name'),_.uniq, console.log);