0927
[MySQL] [MongoDB]
database database
table collection
index index
row JSON document
column JSON field
join embedding and linking
primary key _id field
group by aggregation
1) atlas mongodb - 호스팅 서비스 like AWS rgb?
2) express --no-view mongodb_server
3) npm install
4) npm install mongoose
5) config폴더 만들고 안에 json파일 (MongoDB 연결 위함)
6) bin 폴더 내의 www 파일 수정 (MongoDB 연결 위함)
7) mongogoose를 이용하여 스키마 생성
=> 데이터가 작고 정형화 되어있을때는 스키마 있는게 더 편하니까!
8) models 폴더 생성 후 파일을 만들어 스키마 생성
9) router 작성
10) Postman으로 통신해보니 MongoDB에 데이터 저장이 된다!