Reputation: 165
Is there a complete reference for MongoDB's repl? I would like to know all the available JS commands I can use as I would like to port the interface into the browser.
Upvotes: 3
Views: 7961
Reputation: 3162
following mongodb.org article has good description on mongodb commands http://docs.mongodb.org/manual/reference/javascript/
Following link has all the javascript commands http://docs.mongodb.org/manual/reference/method/
Following link has SQL to MongoDB Mapping Chart http://docs.mongodb.org/manual/reference/sql-comparison/
I hope this helps
Upvotes: 3
Reputation: 22
there is a documentation about mongodb for javascript,
there are the commands and more things about that.
docs.mongodb.org/manual/reference/commands
there is a tutorial to how use that
http://www.hacksparrow.com/the-mongodb-tutorial.html
Upvotes: 0