How to update single and multiple documents in MongoDB using Node.js ? Last Updated : 20 Nov, 2020 Comments Improve Suggest changes Like Article Like Report MongoDB the most popular NoSQL database, is an open-source document-oriented database. The term ‘NoSQL’ means ‘non-relational’. It means that MongoDB isn’t based on the table-like relational database structure but provides an altogether different mechanism for storage and retrieval of data. This format of storage is called BSON (similar to JSON format). Refer (this) article. MongoDB Module: This module of Node.js is used for connecting the MongoDB database as well as used for manipulating the collections and databases in MongoDB. The mongodb.connect() method is used for connecting the MongoDb database which is running on a particular server on your machine. (Refer to this article). We can also use promises in this method in resolve the object contains all the methods and properties required for collection manipulation and in reject the error occurs during connection. Installing module: node install mongodb Project structure: Running the server on Local IP: mongod --dbpath=data --bind_ip 127.0.0.1 MongoDB Database: Database:GFG Collection:GFGcollections Structure of GFG database: Index.js: JavaScript const MongoClient = require("mongodb"); const url = 'mongodb://localhost:27017/'; const databasename = "GFG"; // Database name MongoClient.connect(url).then((client) => { const connect = client.db(databasename); // Connect to collection const collection = connect .collection("GFGcollections"); // Update one collection collection.updateOne( { "name": "saini" }, { $set: { "class": "bye" } } ); // Update multiple documents having // GFGNEW class collection.updateMany( { "class": "GFGNEW" }, { $set: { "class": "GFG" } } ); console.log("update successful"); }).catch((err) => { // Handling the error console.log(err.Message); }) Output: Updated MongoDb collection: Comment More infoAdvertise with us Next Article How to update single and multiple documents in MongoDB using Node.js ? Z zack_aayush Follow Improve Article Tags : Technical Scripter Web Technologies Node.js MongoDB Technical Scripter 2020 Node.js-Misc +2 More Similar Reads How to insert single and multiple documents in Mongodb using Node.js ? MongoDB, the most popular NoSQL database, is an open-source document-oriented database. The term âNoSQLâ means ânon-relationalâ. It means that MongoDB isnât based on the table-like relational database structure but provides an altogether different mechanism for storage and retrieval of data. This fo 2 min read How to delete single and multiple documents in MongoDB using node.js ? MongoDB, the most popular NoSQL database is an open-source document-oriented database. The term âNoSQLâ means ânon-relationalâ. It means that MongoDB isnât based on the table-like relational database structure but provides an altogether different mechanism for storage and retrieval of data. This for 2 min read How to fetch single and multiple documents from MongoDb using Node.js ? MongoDB, the most popular NoSQL database, is an open-source document-oriented database. The term âNoSQLâ means ânon-relationalâ. It means that MongoDB isnât based on the table-like relational database structure but provides an altogether different mechanism for storage and retrieval of data. This fo 2 min read How to replace one document in MongoDB using Node.js ? 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. Inst 1 min read How to set the document value type in MongoDB using Node.js? Mongoose.module is one of the most powerful external module of the node.js. Mongoose is a MongoDB ODM i.e (Object database Modelling) that used to translate the code and its representation from MongoDB to the Node.js server. Mongoose module provides several functions in order to manipulate the docum 2 min read Like