How to insert single and multiple documents in Mongodb using Node.js ? Last Updated : 05 Oct, 2021 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. 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 Index.js JavaScript const MongoClient = require("mongodb"); // Server running const url = 'mongodb://localhost:27017/'; // Database name const databasename = "GFG"; MongoClient.connect(url).then((client) => { // Connecting to the database const connect = client.db(databasename); // Database collection const collection = connect .collection("GFGcollections"); // Inserting single document collection.insertOne({ "name": "aayush", "class": "GFG" }); //inserting multiple document collection.insertMany([ { "name": "saini", "class": "GFG" }, { "name": "GfGnew", "class": "GFGNEW" } ]); console.log("Insertion Successful") }).catch(err) => { // If error occurred show the error message console.log(err.Message); } Output: MongoDb database: Comment More infoAdvertise with us Next Article How to insert single and multiple documents in Mongodb using Node.js ? Z zack_aayush Follow Improve Article Tags : Technical Scripter Web Technologies Node.js Write From Home MongoDB Technical Scripter 2020 +2 More Similar Reads How to update 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 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 Insert a Document into a MongoDB Collection using Node.js? MongoDB, a popular NoSQL database, offers flexibility and scalability for handling data. If you're developing a Node.js application and need to interact with MongoDB, one of the fundamental operations you'll perform is inserting a document into a collection. This article provides a step-by-step guid 5 min read Like