How to fetch single and multiple documents from 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: data is folder name mongod --dbpath=data --bind_ip 127.0.0.1 MongoDB Database: Database:GFG Collection:GFGcollections Index.js 1. Fetching single document of GFGcollections 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"); // Fetching the records having // name as saini collection.find({ "name": "saini" }) .toArray().then((ans) => { console.log(ans); }); }).catch((err) => { // Printing the error message console.log(err.Message); }) Output: 2. Fetching all documents of the GFGcollections 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"); collection.find({}).toArray().then((ans) => { console.log(ans); }); }).catch((err) => { // Printing the error message console.log(err.Message); }) Output: Comment More infoAdvertise with us Next Article How to fetch single and multiple documents from MongoDb using Node.js ? zack_aayush Follow Improve Article Tags : Technical Scripter Web Technologies Node.js Write From Home MongoDB Technical Scripter 2020 Node.js-Misc +3 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 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 get Distinct Documents from MongoDB using Node.js ? MongoDB is a cross-platform, document-oriented database that works on the concept of collections and documents. It stores data in the form of key-value pairs and is a NoSQL database program. The term NoSQL means non-relational. MongoDB module: This module of Node.js is used for connecting the Mongo 2 min read How To Query For Documents In MongoDB Using NodeJS? MongoDB is the popular NoSQL database that allows for flexible and scalable data storage. NodeJS and JavaScript runtime built on Chrome's V8 JavaScript engine. It is often used with MongoDB to build powerful and efficient applications. In this article, we will guide you on how to query the documents 4 min read How to find all the document keys of 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 1 min read How to Remove Documents using Node.js Mongoose? When working with Node.js and MongoDB, managing data involves removing documents from collections. In this article, we will explore how to remove documents using Node.js and Mongoose, a popular MongoDB library that simplifies database interactions. We'll cover the various methods provided by Mongoos 3 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 Delete a Document From MongoDB Collection using NodeJS? MongoDB, the most popular NoSQL database, is an open-source document-oriented database. The term âNoSQLâ means ânon-relationalâ. This means that MongoDB isnât based on a table-like relational database structure but provides an altogether different mechanism for data storage and retrieval. This stora 4 min read How to Get Data from MongoDB using Node.js? One can create a simple Node.js application that allows us to get data to a MongoDB database. Here we will use Express.js for the server framework and Mongoose for interacting with MongoDB. Also, we use the EJS for our front end to render the simple HTML form and a table to show the data. Prerequisi 6 min read Like