node.js 에서 mongoose 연동
// 이 전에 mongoose 설치 > npm install mongoose
// connect to mongodb server
var db = mongoose.connection;
db.on('error', console.error);
db.once('open', function(){
console.log("Connected to mongod server");
});
mongoose.connect('mongodb+srv://[username]:[password]@beappcluster-xwyff.mongodb.net/test?retryWrites=true', {
useNewUrlParser: true
});
// username, password 에 해당하는 값 삽입
mongodb 설치 : https://nesoy.github.io/articles/2017-04/MongoDB
'데이터베이스 > MongoDB' 카테고리의 다른 글
Atlas 사용 방법 (0) | 2019.04.02 |
---|---|
mongoDB 간단 문법 (0) | 2019.03.19 |