I've tried two variants:
const db = await mongo.connect("mongodb:///tmp/mongodb-27017.sock/mydb");
// Error: MongoError: "Connection failed: Cannot read properties of undefined (reading 'includes')"
and
const db = await mongo.connect("mongodb://%2Ftmp%2Fmongodb-27017.sock/mydb");
// Error: MongoError: "Connection failed: failed to lookup address information: Name or service not known"
What is the correct syntax?