how can we access single connection in the other file in mongoose using node js code example
Example: mongoose setup
// getting-started.js
const mongoose = require('mongoose');
mongoose.connect("mongodb://localhost:27017/name", { useUnifiedTopology: true, useNewUrlParser: true });