What is the difference between the npm module MongoDB and the downloaded MongoDb?
-
Downloaded MongoDB is actual SoftWare. Package MongoDB is just a library code that makes operations on SW easy.Tushar– Tushar2016-04-26 15:32:16 +00:00Commented Apr 26, 2016 at 15:32
-
So Tushar,we need both of them ?user5686565– user56865652016-04-26 15:33:56 +00:00Commented Apr 26, 2016 at 15:33
-
First one(SW) is COMPULSORY, second depends on you.Tushar– Tushar2016-04-26 15:34:46 +00:00Commented Apr 26, 2016 at 15:34
Add a comment
|
1 Answer
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.