회원가입 및 클러스터 생성
몽구스 설치
npm install mongoose --save
index.js에 해당 코드에 생성한 아이디와 비밀번호 넣기
const mongoose = require('mongoose')
mongoose.connect('mongodb+srv://<아이디>:<비밀번호>@cluster0.p0k0hwg.mongodb.net/?retryWrites=true&w=majority').then(()=>console.log('MongoDB Connected...'))
.catch(err => console.log(err));
실행
npm start