Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anybody give me links for good tutorials for mongoose with node.js??

share|improve this question

4 Answers

up vote 25 down vote accepted

I personally would recommend looking at the mongoose docs, lots of good example code and definitely the most thorough. http://mongoosejs.com/

share|improve this answer
5  
Pedro's tutorial is great but changes to the Mongoose API v1.0 make some of the syntax used obsolete (see the comments below the screencast). – mrjf Jul 21 '11 at 16:26
2  
Although the syntax has changed quite a bit, his video still helped me gain some insight as to how models in Mongoose are useful. – Jason Pudzianowski Mar 1 '12 at 10:20
The 2 tutorial links are now dead. – udjamaflip Dec 4 '12 at 11:02
Two links are broken... – John Dec 4 '12 at 18:10
This was really good advice. I had spent days trawling through various "tutorials" online and got nowhere till I took Donnie H's advice. – Umar Farooq Khawaja Mar 30 at 1:31
show 1 more comment

Developing Backbone.js Applications By Addy Osmani, a creative-commons book on Backbone.js for beginners and advanced users, is pretty good

share|improve this answer
Especially the chapter titled "Building A Backbone App With Node.js, Express, Mongoose and MongoDB" – Spongeboy Jul 17 '12 at 6:10

https://github.com/madhums/nodejs-express-mongoose-demo - most comprehensie tutorial for express, mongoose

share|improve this answer

After installing using npm install mongoose, look at node_modules/mongoose/docs & node_modules/mongoose/examples. I also found that reading some of the tests in node_modules/mongoose/test helped me out.

share|improve this answer
Though I think the structure has changed since you added this, the node_modules/mongoose/README.md is also nice worth looking at. – Ryan Ore Dec 2 '12 at 18:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.