MongoSkin is an easy to use Node.js driver for MongoDB. It builds on the `node-mongodb-native` driver with support for additional JavaScript method binding which allows it to act as a Model (in a document way).

learn more… | top users | synonyms

0
votes
1answer
19 views

How to specify individual username & password parameters with mongoskin?

I'm connecting to a mongodb db with authentication with mongoskin, and know you can specify a db user like this: [*://][username:password@]host[:port][/database][?auto_reconnect[=true|false]] ...
1
vote
0answers
20 views

Mongoskin ensureIndex on find

Is there a way in mongoskin to ensureIndex on a find without wrapping it? It is my understanding the index list is cached in memory so there is a minimal performance impact to ensuring the index
2
votes
2answers
100 views

Update document only if it is different from the database?

I have a document in a mongodatabase user:{ name:'bruce', surname:'wayne', job:'batman', email:'onlyifdanger@batman.com', } so when user update info, I have to: query into ...
1
vote
1answer
89 views

How do you retrieve “related” documents in MongoDB?

I'm using node.js, express, and MongoSkin driver for MongoDB. I'm trying to render a view in my blog application that shows a list of blog posts. Each post has a reference to an author ID. I'm trying ...
0
votes
2answers
93 views

nodejs exited with mongodb error

i dont have much experience with nodejs and express, i have this error in console if(stepErr) throw stepErr; give me this DEBUG: ...
0
votes
0answers
102 views

I'm using MongoSkin in my Node.js application and after a period of inactivity it loses connectivity with the database

I'm building my first Node.js application and I've run into an issue with MongoDB. I'm using the MongoSkin driver. Once I start my application it all works great. I can sit and toy with it for an ...
0
votes
0answers
108 views

mongodb wrong when i try to findandmodify

this is the structure in mongodb { code:'ACBD5588', email:'owner@mail.com', object{ array_doc:[//many documents with this structure { code_doc:'ANCB7894', ...
2
votes
2answers
79 views

make one array of multiple arrays in javascript with mongodb

i have this structure in my mongodb { category:['A','B'], info:....., } { category:['A','F','T'], info:....., } { category:['A','C'], ...
0
votes
1answer
88 views

pull subdocument in array mongodb

i have in mongodb this structure {doc: { array_doc:[....//many documents]} } im using mongoskin in mongodb 2.2 with nodejs 0.8 var code_doc='HSKD41814541211'; var db = ...
0
votes
2answers
66 views

the new:true option returns me the old value,in mongodb

im using this in mongodb v2.2 nodejs 0.8 mongoskin 0.5 framework var db = mongo.db(admin+"@127.0.0.1:27017/database",{safe:true}); ...
1
vote
1answer
89 views

Single query or multiple queries on mongodb with mongoskin???

this is on mongodb {cod_com:'WWWOAN', cod_prod[{prod:'proda',info:'hola mundo'},{prod:'pacda',info:'hola mundo'},{prod:'prcdb',info:'hola mundo'}] } {cod_com:'WWWOA2', ...
0
votes
1answer
67 views

how can i know if connection is safe true?

i made many times questions about connections on mongodb, i cant understand many things yet, but i try... with this connection... db.collection('usuarios').insert(campos,{safe:true}, function(err, ...
1
vote
1answer
93 views

wich is the difference between safe:true and safe:false in a connection with mongoskin?? and how use it?

i have a connection with mongoskin and nodejs var db = mongo.db("root:toor@127.0.0.1:27017/cordoba"); but i dont know wich is the best practice in this case.... ...
0
votes
1answer
161 views

MongoDB auto_reconnect doesn't work

I'm using mongoskin as a wrapper to the native mongodb driver, auto_reconnect doesn't seem to work. I'm creating the database: var db = mongo.db(serverUrl, { database: database, ...
0
votes
0answers
134 views

Sort by ISODate Mongo

I have some problem with the sort function of mongoskin. I have a document like this: { name: 'Alex', created: ISODate("2012-05-02T13:07:17.012Z") }, { name: 'Jeff', created: ...
1
vote
1answer
73 views

Mongodb inserting object values

I want to record user events to my mongodb collection. Is it possible to set up a simple query to only store the last recorded time stamp for an event for an arbitrary, dynamically changing set of ...
1
vote
2answers
76 views

mongoskin inserts two records instead of one

I'm new here and new to mongo etc and I'm having a strange problem I need help with. I have created an app.js file which I'm running with node. It listens for a web request and calls a function to ...
0
votes
0answers
36 views

how to reconnect to mongodb?

I'm using mongoskin (just a wrapper for the native driver) to connect to MongoDB from node.js, I'm creating the connections on server start, outside of the request handler. I have auto_reconnect set ...
0
votes
1answer
175 views

Can't return a string properly with mongoskin

So I have this script: var db = require('mongoskin').db('localhost:27017/titles', {safe:true}); var titles = db.collection('titles'); title = titles.findOne(function(err, result){ if (err) throw ...
2
votes
2answers
351 views

How do I set the safe variable in mongoskin?

I am getting this error message: ======================================================================================== = Please ensure that you set the default safe variable to one of the ...
1
vote
2answers
234 views

MongoDB query against geospatial index with maxDistance fails from node.js client

I want to query against a geospatial index in mongo-db (designed after this tutorial http://www.mongodb.org/display/DOCS/Geospatial+Indexing). So when I execute this from the shell everything works ...
0
votes
1answer
253 views

Mocking mongoskin in node.js application

As I try to follow the TDD way of development, I still struggle to find out how one can mock certain stuff in JavaScript. I am used to mocking in Java with Mockito and Spring (e.g. inject a mongo mock ...
0
votes
1answer
134 views

How to protect against sql injection with url.parse

I am very new to node.js and mongodb. I have a page getting query strings with var queries = url.parse(req.url,true).query; and I write them into database using mongoskin module. Do I have to do ...
0
votes
1answer
113 views

Install mongoskin with native options (using npm)

When I install mongoskin using npm, it tells me: To install with C++ bson parser do <npm install mongodb --mongodb:native> This is fine when doing installing manually. Supposed I want to add ...
0
votes
1answer
195 views

Mongoskin findAndModify ID object id

Using nodejs, mongoskin.. I'd like to return the updated doc so Im using findAndModify, however the query {_id: "someid"} doesn't work. I think I need to use {id: ObjectID{'someid'} as the query. ...
2
votes
1answer
229 views

efficiency of mongodb/mongoskin access by multiple modules approach?

I'm developing an express app that provides a REST api, it uses mongodb through mongoskin. I wanted a layer that splits routing from db acess. I have seen an example that creates a database bridge by ...
1
vote
1answer
319 views

Structure recommendation

I try to find a good directory structure for my nodejs/express/mongoDB application. Currently I use the native-mongodb driver which feels nice and fast but is limited when a proper structure should ...
0
votes
1answer
357 views

Nodejs Mongo insert into subdocument - dynamic fieldname

{username:'me', companies:{"yourcompany":{...}} I want to insert a company into a user record (user collection), to make: {username:'me', companies:{ "yourcompany":{...}, "mycompany":{...} } But ...
5
votes
1answer
640 views

MongoDB connections keep increasing

I keep hitting my connection limit, but http traffic has remained consistent. I used MMS to profile my mongod process and saw that the number of connections keeps rising: I'm using the mongoskin ...
0
votes
0answers
63 views

specify order results of multiply queries in mongodb

I'm trying to construct a string from the results of different queries on different collections. Each query results in a (sub)string and the order in which they are concatenated into the final string ...
1
vote
0answers
141 views

sample mongoskin mocha test

I have a sample db 'rockband' with collection 'bands' with four docs. Here is a simple stub that works (coffee): mongo = require('mongoskin') db = mongo.db('localhost:27017/rockband') ...
0
votes
0answers
168 views

using mongoskin with in node.js, cannot deep copy result array

I am unsure how to return a mongoskin collection through my restify server. I have: function clone(x) { if (x.clone) return x.clone(); if (x.constructor == Array) { var r ...
3
votes
3answers
342 views

How to display arbitrary, schemaless data in HTML with node.js / mongodb

I'm using mongodb to store application error logs as json documents. I want to be able to format the error logs as HTML rather than returning the plain json to the browser. The logs are properly ...
0
votes
2answers
254 views

How to use a list of objects inside an object of MongoDB using Mongo-Skin?

I'm using mongoDB with mongoskin on top of Node.JS. I have a list of images (collection 'images') and for each image I'd like to save a list of comments. I believe the right way with mongodb is to ...
0
votes
1answer
535 views

Reconnect MongoDB using MongoSkin ( Nodejs )

I have been using MongoSkin( Nodejs ) plugin to connect Mongodb as below. var db = mongo.db(dbconfig.mongo_ip+'/'+dbconfig.mongo_db_name); db.collection('myprofile').findOne({_id:memberid}, ...
0
votes
0answers
417 views

Foreman + NodeJS + MongoSkin: How to connect to mongodb from mongo cli?

I have a simple helloworld project using foreman + nodejs + mongoskin. It's acquire some data from an http get request and put it into mongodb via mongoskin. The app works but I'm not able to connect ...
2
votes
1answer
459 views

Correct Use of Mongoskin

I usually work with mongoskin because I like to be close to the database. Usually, I do a setup with a file like db.coffee, that contains just this: mongo = require 'mongoskin' # either local ...