How to find all the document keys of MongoDB using Node.js ? Last Updated : 14 Dec, 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). 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). MongoDB Stores all the records as an object which have different or same key-value pairs Installing module: node install mongodb Project structure: Running the server on Local IP: Data is the directory where MongoDB server is present. mongod --dbpath=data --bind_ip 127.0.0.1 MongoDB Database: Database:GFG Collection:helloworld 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); // Collection name const collection = connect.collection("helloworld"); collection.find().forEach(e=>{ for(key in e){ console.log(key); // Printing the keys } }) }).catch((err) => { console.log(err.Message); }) Output: Comment More infoAdvertise with us Next Article How to find all the document keys of MongoDB using Node.js ? Z zack_aayush Follow Improve Article Tags : Web Technologies Node.js MongoDB Technical Scripter 2020 Node.js-Misc +1 More Similar Reads How to find all the values of particular key of MongoDB Database using Node.js ? 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() is the main method that is used for connecting to the MongoDB database which is running on a particular server on your m 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 Delete a Key from a MongoDB Document using Mongoose? MongoDB is a popular NoSQL database that stores data in flexible, JSON-like documents. When working with MongoDB using Mongoose, a MongoDB object modeling tool designed to work in an asynchronous environment and developers encounter scenarios where they need to delete a key from a document. In this 6 min read How to add range in the Collection of 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 documen 2 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 Like