// for mongodb atlas
mongoose.connect(
"mongodb+srv://<username>:<password>@cluster0.88kbv.mongodb.net/<project_name>?retryWrites=true&w=majority",
{
useNewUrlParser: true,
useUnifiedTopology: true,
useCreateIndex: true,
useFindAndModify: false,
}
);