Skip to content

Instantly share code, notes, and snippets.

View Muhammed-Rahif's full-sized avatar
💻
................................................................................

Muhammed Rahif Muhammed-Rahif

💻
................................................................................
View GitHub Profile
@Muhammed-Rahif
Muhammed-Rahif / express-app.js
Last active September 6, 2021 14:56
This is a mongodb localhost:27017 connection code in node js express. We can connect simply mongodb(PORT: localhost:27017 ) to our node js project as this code...
db.connect((err)=>{
if (err) {
console.log("Database connection Error :"+err);
}else{
console.log("Database connected to port 27017");
}
})