0

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

3
  • Downloaded MongoDB is actual SoftWare. Package MongoDB is just a library code that makes operations on SW easy. Commented Apr 26, 2016 at 15:32
  • So Tushar,we need both of them ? Commented Apr 26, 2016 at 15:33
  • First one(SW) is COMPULSORY, second depends on you. Commented Apr 26, 2016 at 15:34

1 Answer 1

1

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.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.