Skip to content

Instantly share code, notes, and snippets.

@pretentiousgit
Last active August 29, 2015 14:07
Show Gist options
  • Save pretentiousgit/b4cdf9cc4d852b27db09 to your computer and use it in GitHub Desktop.
Save pretentiousgit/b4cdf9cc4d852b27db09 to your computer and use it in GitHub Desktop.
// db.js
'use strict';
var mongoose = require('mongoose');
var db = mongoose.createConnection('mongodb://127.0.0.1:27017/YOUR_APP_NAME');
var auth_db = db.useDb('users');
module.exports = {auth: auth_db, db: db};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment