collections mongodb find all nodejs code example

Example: show all collections in mongodb node js

async function connect(){
    /**
     * Connection URI. Update , , and  to reflect your cluster.
     * See https://docs.mongodb.com/ecosystem/drivers/node/ for more details
     */
    const uri = "yourUri";
 

    const client = new mongo(uri);
 
    try {
        // Connect to the MongoDB cluster
        await client.connect();
        
        // Make the appropriate DB calls
        const db = client.db("testDatabase");
       
        const collections = await db.collections();
        collections.forEach (c=>console.log(c.collectionName));

        }
        
        
 
        // Make the appropriate DB calls
       
 
    } catch (e) {
        console.error(e);
    } finally {
        await client.close();
    }
}

connect().catch(console.error);

Tags:

Misc Example