VOOZH about

URL: https://www.geeksforgeeks.org/node-js/how-to-replace-one-document-in-mongodb-using-node-js/

⇱ How to replace one document in MongoDB using Node.js ? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to replace one document in MongoDB using Node.js ?

Last Updated : 12 Feb, 2021

MongoDB, the most popular NoSQL database, we can count the number of documents in MongoDB Collection using the MongoDB collection.countDocuments() function. The mongodb module is used for connecting the MongoDB database as well as used for manipulating the collections and databases in MongoDB. 

Installing module: You can install mongodb module using the following command. 

npm install mongodb

Project Structure:

👁 Image

Running the server on Local IP: Data is the directory where MongoDB server is present.

mongod --dbpath=data --bind_ip 127.0.0.1
👁 Image

MongoDB Database:

Database:GFG
Collection:aayush

Following is the sample data stored in your database for this example.

👁 Image

Filename: index.js

 
 

Run index.js file using the following command:


 

node index.js

Output:


 

👁 Image


 

Following is our updated database after executing the above command.


 

👁 Image


 

Comment

Explore