I want to open and initialise the DB via Node-Mongo-Native-Driver once in the app.js file and then leave it open and do reads in the routes. I put following code in the app.js and wrapping the app.gets in order to made them available when the DB is opened:
var mongoClient = new MongoClient(new Server('localhost', 27017));
mongoClient.open(function(err, mongoClient) {
var db1 = mongoClient.db("dev-db")
, products = db1.collection('products');
app.get('/', routes.index);
app.get('/users', user.list);
});
When I try now to read the DB in the index.js route I get
ReferenceError: products is not defined
I thought that index.js should be able to access products since it was defined in a outer function due to wrapping the app.gets in the initialisation.
Besides a 2nd question: what's the difference between MongoClient.open and MongoClient.connect