I using Node-Mongo-Native and trying to set a global connection variable, but I am confused between two possible solutions. Can you guys help me out with which one would be the good one?
1. Solution ( which is bad because every request will try to create a new connection.)
var express = require('express');
var app = express();
var MongoClient = require('mongodb').MongoClient;
var assert = require('assert');
// Connection URL
var url = '[connectionString]]';
// start server on port 3000
app.listen(3000, '0.0.0.0', function() {
// print a message when the server starts listening
console.log("server starting");
});
// Use connect method to connect to the server when the page is requested
app.get('/', function(request, response) {
MongoClient.connect(url, function(err, db) {
assert.equal(null, err);
db.listCollections({}).toArray(function(err, collections) {
assert.equal(null, err);
collections.forEach(function(collection) {
console.log(collection);
});
db.close();
})
response.send('Connected - see console for a list of available collections');
});
});
Solution ( to connect at app init and assign the connection string to a global variable). but I believe assigning connection string to a global variable is a not a good idea.
var mongodb;
var url = '[connectionString]';
MongoClient.connect(url, function(err, db) {
assert.equal(null, err);
mongodb=db;
}
);
I want to create a connection at the app initialization and use throughout the app lifetime.
Can you guys help me out? Thanks.
Create a Connection
class to manage the apps database connection.
const MongoClient = require('mongodb').MongoClient
class Connection {
static connectToMongo() {
if ( this.db ) return Promise.resolve(this.db)
return MongoClient.connect(this.url, this.options)
.then(db => this.db = db)
}
}
Connection.db = null
Connection.url = 'mongodb://127.0.0.1:27017/test_db'
Connection.options = {
bufferMaxEntries: 0,
reconnectTries: 5000,
useNewUrlParser: true
}
module.exports = { Connection }
Everywhere you require('./Connection.js')
, the Connection.connectToMongo()
method will be available, as will the Connection.db
property if it has been initialised.
const router = require('express').Router()
const { Connection } = require('../lib/Connection.js')
// Better if this goes in your server setup somewhere and waited for.
Connection.connectToMongo()
router.get('/files', (req, res) => {
Connection.db.collection('files').find({})
.then(files => res.json({ files: files })
.catch(err => res.json({ error: err })
})
module.exports = router
module version ^3.1.8
Initialize the connection as a promise:
const MongoClient = require('mongodb').MongoClient
const uri = 'mongodb://...'
const client = new MongoClient(uri)
const connection = client.connect()
And then summon the connection whenever you wish you perform an action on the database:
app.post('/insert', (req, res) => {
const connect = connection
connect.then(() => {
const doc = { id: 3 }
const db = client.db('database_name')
const coll = db.collection('collection_name')
coll.insertOne(doc, (err, result) => {
if(err) throw err
})
})
})
This is how i did.
// custom class
const MongoClient = require('mongodb').MongoClient
const credentials = "mongodb://user:pass@mongo"
class MDBConnect {
static connect (db, collection) {
return MongoClient.connect(credentials)
.then( client => {
return client.db(db).collection(collection);
})
.catch( err => { console.log(err)});
}
static findOne(db, collection, query) {
return MDBConnect.connect(db,collection)
.then(c => {
return c.findOne(query)
.then(result => {
return result;
});
})
}
// create as many as you want
//static find(db, collection, query)
//static insert(db, collection, query)
// etc etc etc
}
module.exports = MDBConnect;
// in the route file
var express = require('express');
var router = express.Router();
var ObjectId = require('mongodb').ObjectId;
var MDBConnect = require('../storage/MDBConnect');
// Usages
router.get('/q/:id', function(req, res, next) {
let sceneId = req.params.id;
// user case 1
MDBConnect.connect('gameapp','scene')
.then(c => {
c.findOne({_id: ObjectId(sceneId)})
.then(result => {
console.log("result: ",result);
res.json(result);
})
});
// user case 2, with query
MDBConnect.findOne('gameapp','scene',{_id: ObjectId(sceneId)})
.then(result => {
res.json(result);
});
});