Élodie Petit
Élodie Petit

Reputation: 5914

node-mongodb-native or Mongoose

We are going to develop an application that will work with MongoDB. The users of the application will create custom entities with the help of the GUI so we don't have any predefined entities while developing the application. Should we go with mongodb-native or use Mongoose?

Thanks.

Upvotes: 2

Views: 3837

Answers (1)

Gal Ben-Haim
Gal Ben-Haim

Reputation: 17803

If you don't plan on using predefined entities or "schema" don't use Mongoose. I suggest using a wrapper around the native driver, such as https://github.com/kissjs/node-mongoskin , it does everything the native driver is doing, but much simpler.

Upvotes: 2

Related Questions