Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- git lab
- nextjs 설치
- API 토큰
- ngrok실행
- getModifierState
- github io
- styled components
- nextjs
- fetch
- Git
- react
- There isn’t anything to compare
- SCSS
- github
- bootstrap
- 컨디셔널 렌더링
- next.js css
- react typescript
- input type=file
- dart 변수
- npm styled-reset
- react env
- ngrok설치
- icon
- createGlobalStyle
- nextjs .env
- API token
- rewrites
- typescript react
- CSS
Archives
- Today
- Total
목록Schema (1)
꾸준히 성장하는 개발자
[MongoDB ] mongoose /model? Schema??
MongoDB - NoSQL 데이터베이스 시스템이다. 데이터베이스 그 자체 Mongoose - Node.js와 MongoDB를 연결해주는 드라이버 - mongoDB의 객체 모델링 도구 MongoDB는 noSql이기 때문에 정해진 스키마가 없어 한 데이터 셋에서 여러 종류의 데이터셋이 섞여있는 경우가 생길 수 있다. mongoose는 이런일들을 방지하기 위해 스키마를 정의하는 기능을 제공하고 이를 필수로 규정해놓았다. mongoose로 mongoDB연결하기 const mongoose = require("mongoose"); mongoose .connect("mongodb주소") .then(() => console.log("MongoDB Connected...")) .catch((err) => console..
Node.js
2022. 10. 25. 01:49