79760532

Date: 2025-09-10 06:41:24
Score: 1.5
Natty:
Report link

Notice the two? characters in the URI. That makes the driver fail to parse it correctly in modern versions of the MongoDB Node driver (which Mongoose 5+ uses).

mongoose.connect(
  "mongodb://stackoverflow:[email protected]:31064/thirty3?authSource=admin",
  { useNewUrlParser: true, useUnifiedTopology: true }
);
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lokendra Parmar