mongo list db code example
Example 1: mongodb show database command linux
show databases
show dbs
Example 2: list all collections in the MongoDB shell
JavaScript (shell):
db.getCollectionNames()
Node.js:
db.listCollections()
show databases
show dbs
JavaScript (shell):
db.getCollectionNames()
Node.js:
db.listCollections()