Top "Monk" questions

Monk is a tiny layer that provides some usability improvements for MongoDB usage within Node.

Argument passed in must be a string of 24 hex characters - I think it is

I have a method to find a document in my database based on its ObjectID: console.log('id: ' + id + …

node.js mongodb monk
monk vs mongoose for Mongodb

I'm learning NodeJs. To connect to and use MongoDB from NodeJS, I see a lot of examples using either Monk …

node.js mongodb mongoose monk
Trouble with PUT request using Node.js (express), Angular, and MongoDB

I'm stuck trying to figure out how to update my data to MongoDB (I'm using Monk with MongoDB, Node, Express, …

node.js angularjs mongodb express monk
create a new object Id in mongoDB using node js

I am using the below code to insert data to mongodb router.post('/NewStory', function (req, res) { var currentObject = { …

node.js mongodb monk
How to update a document in a forEach-loop in Javascript using Monk?

First the structure of my documents: { "_id": "541a8bea74123744b371d38e", "geometry": { "type": "Point", "coordinates": [ 5.3435, 51.69554 ] }, "type": "Feature", "properties": { } } The …

javascript mongodb monk
how to get data in batches in mongodb

I want to retrieve data from MongoDB, 5 at a time I am using limit to limit the number of records …

mongodb mongodb-query monk
MongoDB database deleted automatically

I am very confused with the MongoDB behavior I am facing these days. I am running a MEAN(MongoDB, Express, …

windows mongodb monk
Using the find method on a MongoDB collection with Monk

I am working through a MEAN stack tutorial. It contains the following code as a route in index.js. The …

node.js mean-stack node-mongodb-native monk
Group by in node.js-mongodb

I want to use group by in my server.js, but i get this error: TypeError:Object #(Collection) has no …

node.js mongodb mongodb-query aggregation-framework monk