CodeWithHarry / iNotebook-React

INotebook is a React Application for managing personal notes on the cloud
343 stars 193 forks source link

vedio no 43 - update the code #59

Open Shoaibxaif opened 1 year ago

Shoaibxaif commented 1 year ago

const mongoose = require("mongoose"); const mongoURI = "mongodb://localhost:27017/";

const connectToMongo = () => { mongoose.connect(mongoURI); console.log("connected to mongo"); };

module.exports = connectToMongo;