Mongodb – MongoClient.connect is not responding
I am trying to connect my Node.js (Express) with my MongoDB atlas by following the official tutorial on their website. Here is my conn.js code below: const { MongoClient } = require("mongodb"); const Db = process.env.ATLAS_URI; let _db; module.exports =…