Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

How to get information of all collections present in MongoDB database using Node.js ?

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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:

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 Collections:

Filename: index.js

Javascript




// Requiring module
const MongoClient = require("mongodb");
 
// Database name
const databasename = "GFG";
  
MongoClient.connect(url).then((client) => {
   const connect = client.db(databasename)
   connect.listCollections().toArray(function(err, names) {   
       if(!err) {
           console.log(names)
       }
   });
}).catch((err) => {
 
   // Printing the error message
   console.log(err.Message);
})

Run index.js file using the following command:

node index.js

Output:
 

My Personal Notes arrow_drop_up
Last Updated : 12 Feb, 2021
Like Article
Save Article
Similar Reads