Preview:
const mongoose = require("mongoose");
mongoose.connect(process.env.DB_URL);
const db = mongoose.connection;

db.on("error", (error) => console.log("DB Connection Error: ", error));

db.once("open", () => {
    console.log("DB Connected");
});
// mongoose.set("debug", true)

module.exports = db;
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter