In Index.js file appears const PORT = process.env.PORT || 9000; mongoose .connect(process.env.MONGO_URL, { useNewUrlParser: true, useUnifiedTopology: true, }) but those two have been deprecated and when running the server shows a warning
In Index.js file appears
const PORT = process.env.PORT || 9000;
mongoose
.connect(process.env.MONGO_URL, {
useNewUrlParser: true,
useUnifiedTopology: true,
})
but those two have been deprecated and when running the server shows a warning