Skip to content

Instantly share code, notes, and snippets.

@ianaya89
Created December 21, 2016 23:44
Show Gist options
  • Save ianaya89/6cac4676e1e39b89692a4005e29470bb to your computer and use it in GitHub Desktop.
Save ianaya89/6cac4676e1e39b89692a4005e29470bb to your computer and use it in GitHub Desktop.
const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/test');
const db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', () => {
console.log('connected');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment