/*
* db.js
*
* database include file
*
*/
var dburl = 'localhost/nodejs1';
var collections = ['users'];
var db = require('mongojs').connect(dburl, collections);
/* this has to be 'module.exports' so that when this module is require'd the
* exported object that in this case is 'db' will be a reference instead of an
* undefined object
*/
module.exports = db;