1. npm을 통해 mongoose 모듈 설치
npm install mongoose
2. 자바스크립트 작성
connection-test.js
var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/mydb');
var db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', function() {
// we're connected!
console.log('connected successfully');
});
3. 실행
node connection-test.js
'Database > MongoDB' 카테고리의 다른 글
MongoDB find elemMatch projection option (0) | 2017.07.08 |
---|---|
MongoDB 기존 document에 데이터 추가하기 $push (0) | 2017.07.06 |
Window 32bit MongoDB 설치하기 (0) | 2017.07.06 |
MEAN stack과 친해지기(2) CentOS에 MongoDB를 설치해보자 (0) | 2017.04.06 |