Skip to content

Instantly share code, notes, and snippets.

@gjohnson
Last active September 9, 2024 18:40
Show Gist options
  • Save gjohnson/c3d7837f9c39458250d134d3527f7ebf to your computer and use it in GitHub Desktop.
Save gjohnson/c3d7837f9c39458250d134d3527f7ebf to your computer and use it in GitHub Desktop.
const mongoose = require('mongoose');
mongoose.connect('mongodb://admin:admin@mongodb:27017/').catch(err => {
console.error('Error connecting to MongoDB:', err);
}).then(() => {
console.log('Connected to MongoDB');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment