Reputation:
What is the difference between the npm module MongoDB and the downloaded MongoDb?
Upvotes: 0
Views: 50
Reputation: 312035
The "downloaded MongoDB" (from here) is the actual database server software (MongoDB itself). The mongodb npm module is the node.js native client driver used to access the services of a MongoDB database server from a node.js app.
Upvotes: 1