저기에 나온 url이 nodejs에서 mongodb 데이터베이스와 연결할 때 필요한 mongodb url이다. root는 user이름이고, password는 cluster를 생성할 때 등록한 비밀번호이다. Nodejs 코드 작성하기 이제 nodejs에서 코드를 작성해서 mongodb와 연결해보자. const mongoose = require('mongoose'); const MONGO_URL = [복사한 URL 주소] // 부분은 실제 password로 바꿔야한다. mongoose.connect(MONGODB_URL ...생략...