Recent posts

Mongoose

4 minute read

Mongoose Mongoose는 NoSQL을 위한 nodejs ODM(Object Document Mapping)입니다. Mongoose 관점에서 ODM이란 객체(JavaScript 객체)와 Document(MongoDB Document)를 맵핑해주는 프로그램을 의미합니다. 따라...

MongoDB

less than 1 minute read

PostgreSQL MongoDB는 NoSQL 데이터베이스입니다. 🔎 관계형데이터베이스는 정규화된 테이블로 이루어져 있습니다. (column(attribute) row(tuple))

정규표현식

4 minute read

정규표현식(Regular Expression) 정규표현식은 문자열에서, 특정 문자를 검색, 삽입 등에 사용됩니다. RegExp의 exec, test 메소드와 String의 match, replace, search, split 메소드와 함께 사용됩니다.

Sequelize

2 minute read

Sequelize Sequelize는 관계형 데이터베이스를 위한 nodejs ORM입니다.