MongoDB is a scalable, high-performance, open source, document-oriented database. It supports a large number of languages and application development platforms.
0
votes
2answers
101 views
+200
Can't close a MongoDB connection with Node.js?
It seems that I can't close a MongoDB connection with Node.js native driver. When I run node replica.js the script never ends, hence the connection can't be closed for some reason.
Here is the code. ...
1
vote
0answers
31 views
+100
Is it make sense to wrap mongoose model to own API?
I'm trying to understand is it make sense to make own API for working with Mongoose models?
Let's say we have the simple Mongoose user model:
var UserSchema = new mongoose.Schema({
email: { type: ...
