Skip to content

Instantly share code, notes, and snippets.

@jason-den
Created February 20, 2020 10:34
Show Gist options
  • Save jason-den/c2176fdcdff4233f5644d40216d5b43a to your computer and use it in GitHub Desktop.
Save jason-den/c2176fdcdff4233f5644d40216d5b43a to your computer and use it in GitHub Desktop.
mongodb connection
mongoose
.connect("mongodb://localhost/dbname")
.then(() => console.log("Connected to MongoDB"))
.catch(err => console.log(`Fail to connect to MongoDB: ${err}`));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment