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

Related Articles

Sorting MongoDB Databases in Ascending Order (ASCII value) using Node.js

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

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). 

Installing module:

npm install mongodb
    Project Structure:

  1. Create a new folder, let’s name it ‘NODE-MONGO’.
    mkdir NODE-MONGO
  2. Move to this directory.
    cd NODE-MONGO
  3. Let’s create a new NPM package for our project.
    npm init

NPM Package Details


Folder 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 Databases:

Output of ‘show databases’

Index.js

Javascript




const MongoClient = require("mongodb"); 
const databasename = "GFG";// database name 
MongoClient.connect(url).then((client) => { 
  
    //use admin request
    const connect = client.db(databasename).admin(); 
    connect.listDatabases((err,db)=>{
    if(!err) {
            var arr=[]; //creating an empty array  
            db.databases.forEach(element => {
                arr.push(element.name) //push the name in the array
            });
            arr.sort() //sort the array
            console.log(arr); //printing the array
         }
    })
})
.catch((err) => { 
    // Printing the error if there's any 
    console.log(err); 
})

Run index.js file using below command:

node index.js

Console Output: (Sorted databases according to the ASCII values)

Output

My Personal Notes arrow_drop_up
Last Updated : 07 Oct, 2021
Like Article
Save Article
Similar Reads
Related Tutorials