Questions tagged [mongojs]

MongoJS is a Node.js package to access MongoDB.

References:

306 questions
-1
votes
1 answer

What exactly do these functions do? I new to MEAN stacks and im just trying to understanding what mongojs is doing in these lines of code

Please just help clarify whats happening inside these two function. I'm a bit more comfortable with mongoose as well. If you can provide a mongoose a equivalent that would be great as well. router.put('/api/todos', function (req, res){ …
JET
  • 13
  • 1
  • 7
-1
votes
2 answers

Adding a new element to a nested document

I'm trying to add a new message (with key "3") to the nested "messages" document but $addToSet or $push won't work. Is it possible to push a new message element to such a structure? In the beginning the messages property was an array but my mongodb…
seveves
  • 1,282
  • 4
  • 17
  • 37
-1
votes
1 answer

MongoJS find() returning only 10 results?

i'm new to NodeJS and i'm using MongoJS to connect to my database. All is working fine, but when i use db.collection.find() function, it returns only the first 10 results on the database. function listMessages(from,to){ console.log("[REQ] User…
-1
votes
1 answer

Connecting to a database in monogolab via mongojs

I have a node server and until now my database was local, but now I need it to be on mongolab. Could you tell me how to connect to the database, please?
user3199819
  • 71
  • 1
  • 5
-2
votes
1 answer

MongoJS find is too specific

I am trying to query my mongoDB database in my MEAN Stack web application by sending in a POST request with the values I want to find in the database. Here is what I'm doing : app.post('/api/persons',function(req,res){ console.log("I received a…
Chococo35
  • 79
  • 8
-2
votes
2 answers

Unable to install MongoJs

I was trying to install mongojs by this command: npm install mongojs but there are coming so many errors . https://www.youtube.com/watch?v=763oFTm4pnU So,i restarted my pc and tried installing again but same errors are coming . but i still tried to…
1 2 3
20
21