user5686565
user5686565

Reputation:

Difference between MongoDb and module mongoDb

What is the difference between the npm module MongoDB and the downloaded MongoDb?

Upvotes: 0

Views: 50

Answers (1)

JohnnyHK
JohnnyHK

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

Related Questions