Tagged Questions

Mongoose is a MongoDB object modeling tool designed to work in an asychronous environment.

learn more… | top users | synonyms

8
votes
2answers
280 views

Mongoose: populate() / DBref or data duplication?

I have two collections: Users Uploads Each upload has a User associated with it and I need to know their details when an Upload is viewed. Is it best practice to duplicate this data inside the ...
7
votes
4answers
908 views

How do I update/upsert a document in Mongoose?

Perhaps it's the time, perhaps it's me drowning in sparse documentation and not being able to wrap my head around the concept of updating in Mongoose :) Here's the deal: I have a contact schema and ...
6
votes
2answers
144 views

Dealing with schema changes in Mongoose

What's the best practice (or tool) for updating/migrating Mongoose schemas as the application evolves?
6
votes
2answers
922 views

Does Mongoose only support embedded documents in arrays?

I have some data in MongoDB that looks like this: { name: "Steve", location: { city: "Nowhere, IL", country: "The United States of Awesome" } } I’m using objects to ...
5
votes
1answer
3k views

Any good tutorial for Mongoose with node.js?

Can anybody give me links for good tutorials for mongoose with node.js??
5
votes
2answers
143 views

Updating with modifier operators in the Mongo CLI works but not from node.js code using mongoose

Connecting to our Mongo instance using the CLI, you can use the update modifier operators just fine: db.users.update({nickname: 'mcoalson'}, { "$addToSet" : { room_ref : "b"}}) ...
5
votes
3answers
989 views

Node + Mongoose: Get last inserted ID?

I want to retrieve the last inserted _id, using mongoose as MongoDB wrapper for node.js. I've found the following tutorial, but I can't change any node modules because the app runs on a public server: ...
5
votes
2answers
848 views

Mongoose won't remove embedded documents

I'm scratching my head here, as usual it seems with node projects, and I'm not sure if I'm doing something wrong or if I've run into a bug. I've got a schema of Server that can have any number of ...
4
votes
1answer
181 views

How to write group by query using Mongoosejs?

I'm using nodejs, mongoose odm, and mongo for a web app and am running into issues trying to run "group by" style query in mongoose: var results = mymodel.collection.group ( { keyf: ...
4
votes
3answers
423 views

How do you handle form validation, especially with nested models, in Node.js + Express + Mongoose + Jade

How are you handling form validation with Express and Mongoose? Are you using custom methods, some plugin, or the default errors array? While I could possibly see using the default errors array for ...
4
votes
2answers
186 views

Group (By) in Mongoose?

I've constructed the query I want in the shell but am having trouble writing it in Mongoose. db.commentstreams.group({ key: { page_id: true }, reduce: function(obj,prev) { prev.num_comments += ...
4
votes
2answers
262 views

How to execute runCommand with Mongoose?

I am using Node.js and Mongoose to access my MongoDB. I am using a model that stores some geo coordinates. I have them indexed and everything seems to work as expected. What I am trying to do is to ...
4
votes
1answer
347 views

In Node.js, am I creating a new object when “Require”?

So, what I'm not sure is that. if in ModuleA, I have: var mongoose = require('mongoose'); mongoose.connect(pathA); And in ModuleB, I have: var mongoose = require('mongoose'); ...
4
votes
2answers
1k views

How to paginate with Mongoose in node.js?

I am writing a webapp with Node.js and mongoose. How can I paginate the results I get from a .find() call? I would like a functionality comparable to "LIMIT 50,100" in SQL.
4
votes
6answers
1k views

Delete a key from a MongoDB document using Mongoose

I'm using the Mongoose Library for accessing MongoDB with node.js Is there a way to remove a key from a document? i.e. not just set the value to null, but remove it? User.findOne({}, function(err, ...
4
votes
6answers
2k views

How to sort in mongoose?

I find no doc for the sort modifier. The only insight is in the unit tests: https://github.com/LearnBoost/mongoose/blob/master/tests/unit/spec.lib.query.js writer.limit(5).sort(['test', ...
3
votes
1answer
70 views

How do I get a value array instead a json array in mongo/node/mongoose?

I'm trying to simulate a join in a mongo query so I'm taking the results of my 1st query and then passing it as a $in filter to my 2nd query. Unfortunately the results of my 1st query returns an ...
3
votes
1answer
88 views

How do I get an asynchronous result back with node unit and mongoose?

How do I get an asynchronous result back in nodeunit and mongoose? I've tried the following code and it seems to hang on the database callback never returning a result or err. mongoose = require ...
3
votes
4answers
152 views

Is MongoDB the right DB for a community site?

I'm creating a community site with Node.JS and Express and almost all express tutorials or examples use MongoDB, so I checked it out. The only DB I used so far is MySQL but I'm not that much familiar ...
3
votes
2answers
97 views

Is there any free / Open source Mongo DB browser available? [closed]

Possible Duplicate: Mongo interface I am new to mongo db, and i am looking for a user interface for Mongo DB, I am storing data in my Mongo Db and want to check If its getting Stored ...
3
votes
2answers
251 views

Everyauth: Check github authentication against a database

I'm pretty new to node.js and I'm having problem with the everyAuth module. My issue is, I am trying to create an app that lets the user login via github oauth and checks to see if the user is ...
3
votes
1answer
140 views

Importing a very large record set into MongoDB using nodejs

Before I dive into my question, I wanted to point out that I am doing this partially to get familiarized with node and mongo. I realize there are probably better ways to accomplish my final goal, but ...
3
votes
2answers
115 views

Mongoose — Force collection name

I am trying to use mongoose to create a databse and a collection in it.My code is: var mongoose = require('mongoose'); var db = mongoose.connect('mongodb://localhost/testdb'); var Schema = ...
3
votes
1answer
366 views

Geo spatial index in mongodb with node.js

I am finding problem in defining the geo spatial index '2d' as shown below. Any clue as to what is going wrong ? var Address = new Schema({ loc : {lat: Number, lng: Number }, ...
3
votes
2answers
387 views

Has Mongoose support findAndModify Mongodb method?

Below is the code throwing error "TypeError: Object # has no method 'findAndModify'" Please help me on this! // defining schema for the "counters" table var tableSchema = new Schema({ _id ...
3
votes
1answer
362 views

how do I integrate mongoose with an express.js project?

I'm working on learning node.js as a possible tool for web development. I understand how express.js works, but I'm not sure how to integrate mongoose models, I've tried searching google and here for ...
3
votes
1answer
164 views

selecting all the fields in a row using mapReduce

I am using mongoose with nodejs. I am using mapReduce to fetch data grouped by a field.So all it gives me as a collection is the key with the grouping field only from every row of database. I need to ...
3
votes
1answer
125 views

Mongoose “setter” acting like “getter”?

Using Mongoose with MongoDB and Node.js Previously I had my UserSchema defined like this: var UserSchema = new Schema({ username: { type: String, unique: true }, password: String, ...
3
votes
1answer
279 views

Node.js and Mongoose, too slow to put Schema definitions in separate files?

Playing around with Node.js and I really want to keep my file structure organized. Normally in a project in another language I would have a structure like this: Node App Directory App.js ...
3
votes
3answers
740 views

Node.js Mongoose.js string to ObjectId function

Is there a function to turn a string into an objectId in node using mongoose? The schema specifies that something is an ObjectId, but when it is saved from a string, mongo tells me it is still just a ...
3
votes
2answers
2k views

How to return Mongoose results from the find method?

Everything I can find for rending a page with mongoose results says to do it like this: users.find({}, function(err, docs){ res.render('profile/profile', { users: docs }); }); ...
3
votes
2answers
316 views

How to work with async code in Mongoose virtual properties?

I'm trying to work with associating documents in different collections (not embedded documents) and while there is an issue for that in Mongooose, I'm trying to work around it now by lazy loading the ...
3
votes
2answers
441 views

MongoDB order by “number” ascending

I'm trying to create a registration form with mongoose and MongoDB. I have a unique key, UserId, and every time I create a new entry I would like to take the greatest UserId in the database and ...
3
votes
4answers
1k views

NodeJs performance problem

I'm building a realtime stats application using NodeJs. For the prototype I'm using a Quad-Core AMD Opteron in a RackSpace server for the test with a nodejs server using the Cluster NodeJs ( ...
3
votes
4answers
569 views

What is the killer reason for using Mongoose ORM?

I've been using it with a new project, but it is also my first time using MongoDB. Defining a schema seems unnecessary because I thought the upside of mongo was that it didn't need defined schemes. ...
3
votes
1answer
558 views

MongoDB, Mongoose and Node.js. Why declare a model?

I am new to document oriented databases. My question is why do I have to declare a model in MongoDB each and every time my app starts? For example: mongoose.model('User', { collection: 'user', ...
3
votes
1answer
458 views

Decimal / Float in mongoose for node.js

I start my first test app on node.js / mongoDB / mongoose, this is a very simple app that aims to crate record in DB and retrieve them. I create a model like: var Car = new Schema({ brand : ...
3
votes
1answer
594 views

Using a selfdefined ObjectId and avoiding double entries in Mongoose

I am getting JSON objects through an external API in node.js and want to store them in MongoDB. I defined a model like this: var Product = new Schema({ id: ObjectId, name: String}); And ...
3
votes
3answers
1k views

How do you use Mongoose without defining a schema?

In previous versions of Mongoose (for node.js) there was an option to use it without defining a schema var collection = mongoose.noSchema(db, "User"); But in the current version the "noSchema" ...
3
votes
2answers
3k views

Update model with Mongoose, Express, NodeJS

I'm trying to update an instantiated model ('Place' - I know it works from other routes) in a MongoDB and have spent a while trying to properly do so. I'm also trying to redirect back to the page ...
2
votes
3answers
97 views

How to return a complex JSON response with Node.js?

Using nodejs and express, I'd like to return one or multiple objects (array) using JSON. In the code below I output one JSON object at a time. It works but this isn't exactly what I want. The response ...
2
votes
2answers
39 views

comparing dates to retrieve data

I have data something like this in mongodb { "_id" : ObjectId("4f0ee7310b09f7a254000001"), "createdAt" : ISODate("2012-01-12T23:58:28Z") } { "_id" : ObjectId("4f0ee7350b09f7a254000002"), "createdAt" ...
2
votes
1answer
32 views

How to use mongoose-joins for Node.js

I am trying to figure out how to use mongoose-joins for Node.js. I have tried looking at the ReadMe file, it only explains how set it up. Is there any sample code for actually joining two collections ...
2
votes
1answer
68 views

Optimal way of searching, and removing from an array in Mongoose

I am wondering if I am doing something wrong in the way I am using mongoose in express. My code just doesnt look right. It takes 2 mongoose query to add something in a document, and I am wondering if ...
2
votes
4answers
153 views

How to change result position based off parameter in a mongodb / mongoose query?

So I am using mongoose and node.js to access a mongodb database. I want to bump up each result based on a number (they are ordered by date created if none are bumped up). For example: { name: 'A', ...
2
votes
0answers
89 views

Mongoose query.remove() callback not being called

I've been banging my head against the desk for about 2 hours on this issue, and I can't seem to find a solution. Here's the problem code: /* Users */ var mongoose = require("mongoose"); var User ...
2
votes
5answers
145 views

Find last document of the day for the last 7 days

I am adding entries to a schema every hour in order to track growth over the course of days while maintaining a current score for the current day. Now I would like to be able to pull the most recent ...
2
votes
0answers
130 views

ExpressJS/Node ajax login

Hi I am using the express framework to make a site in node. I am trying to use facebox to present a box where a use can login so that the music on the site will not have to stop playing. I am using ...
2
votes
1answer
85 views

Join like query in mongodb

i have a requirement where i need to get the friends of user. I have made two collections named User and Friends. The code that i use to access the data from the Friends and User is: var friend = ...
2
votes
1answer
171 views

Node, Mongoose, problems saving multiple-depths of nested schema

I'm having trouble working out how to insert multiple-depths of nested schema in MongoDB, via Mongoose and node.js. The example below is a bit contrived but should hopefully explain my problem. As ...

1 2 3 4 5 8