okonri / w4_3133_nodejs_express_mongodb_template

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MongoDB + NodeJS + ExpressJs

Signup here for free

Setup

Tutorials

Sample Code to connect mongoDB using MongoClient

const uri = "mongodb+srv://sa:<password>@cluster0.qa3t4.mongodb.net/<dbname>?retryWrites=true&w=majority";
const client = new MongoClient(uri, { useNewUrlParser: true });
client.connect(err => {
  const collection = client.db("test").collection("devices");
  // perform actions on the collection object
  client.close();
});```

About


Languages

Language:JavaScript 100.0%