Uploaded by bhanu18evjcs010

MongoDB

advertisement
# Quick strat code for MongoDb
const MongoClient = require("mongodb").MongoClient;
const assert = require("assert");
const url ="mongodb://localhost:27017";
//database name
const dbName= "fruitsdb";
//Create a new mongodb
const client = new MongoClient(url);
//use connect methord to connect to the screen
client.connect(function(err){
assert.equal(null, err);
console.log("connected successfully to server");
const db = client.db(dbName);
client.close();
});
Download