Mongoose
Mongoose is a MongoDB object modeling tool designed to work in an asynchronous environment.
Documentation
Support
- Stack Overflow
- bug reports
- help forum
- MongoDB support
- (irc) #mongoosejs on freenode
Plugins
Check out the plugins search site to see hundreds of related modules from the community.
Build your own Mongoose plugin through generator-mongoose-plugin.
Contributors
View all 100+ contributors. Stand up and be counted as a contributor too!
Live Examples
Installation
First install node.js and mongodb. Then:
$ npm install mongoose
Stability
The current stable branch is master. The 3.8.x branch contains legacy support for the 3.x release series, which will continue to be actively maintained until September 1, 2015.
Overview
Connecting to MongoDB
First, we need to define a connection. If your app uses only one database, you should use mongoose.connect
. If you need to create additional connections, use mongoose.createConnection
.
Both connect
and createConnection
take a mongodb://
URI, or the parameters host, database, port, options
.
var mongoose = ; mongoose;
Once connected, the open
event is fired on the Connection
instance. If you're using mongoose.connect
, the Connection
is mongoose.connection
. Otherwise, mongoose.createConnection
return value is a Connection
.
Note: If the local connection fails then try using 127.0.0.1 instead of localhost. Sometimes issues may arise when the local hostname has been changed.
Important! Mongoose buffers all the commands until it's connected to the database. This means that you don't have to wait until it connects to MongoDB in order to define models, run queries, etc.
Defining a Model
Models are defined through the Schema
interface.
var Schema = mongooseSchema ObjectId = SchemaObjectId; var BlogPost = author : ObjectId title : String body : String date : Date;
Aside from defining the structure of your documents and the types of data you're storing, a Schema handles the definition of:
- Validators (async and sync)
- Defaults
- Getters
- Setters
- Indexes
- Middleware
- Methods definition
- Statics definition
- Plugins
- pseudo-JOINs
The following example shows some of these features:
var Comment = name : type: String default: 'hahaha' age : type: Number min: 18 index: true bio : type: String match: /[a-z]/ date : type: Date default: Datenow buff : Buffer; // a setterComment; // middlewareComment;
Take a look at the example in examples/schema.js
for an end-to-end example of a typical setup.
Accessing a Model
Once we define a model through mongoose.model('ModelName', mySchema)
, we can access it through the same function
var myModel = mongoose;
Or just do it all at once
var MyModel = mongoose;
The first argument is the singular name of the collection your model is for. Mongoose automatically looks for the plural version of your model name. For example, if you use
var MyModel = mongoose;
Then Mongoose will create the model for your tickets collection, not your ticket collection.
Once we have our model, we can then instantiate it, and save it:
var instance = ;instancemykey = 'hello';instance;
Or we can find documents from the same collection
MyModel;
You can also findOne
, findById
, update
, etc. For more details check out the docs.
Important! If you opened a separate connection using mongoose.createConnection()
but attempt to access the model through mongoose.model('ModelName')
it will not work as expected since it is not hooked up to an active db connection. In this case access your model through the connection you created:
var conn = mongoose MyModel = conn m = ;m; // works
vs
var conn = mongoose MyModel = mongoose m = ;m; // does not work b/c the default connection object was never connected
Embedded Documents
In the first example snippet, we defined a key in the Schema that looks like:
comments: [Comments]
Where Comments
is a Schema
we created. This means that creating embedded documents is as simple as:
// retrieve my modelvar BlogPost = mongoose; // create a blog postvar post = ; // create a commentpostcomments; post;
The same goes for removing them:
BlogPost;
Embedded documents enjoy all the same features as your models. Defaults, validators, middleware. Whenever an error occurs, it's bubbled to the save()
error callback, so error handling is a snap!
Mongoose interacts with your embedded documents in arrays atomically, out of the box.
Middleware
See the docs page.
Intercepting and mutating method arguments
You can intercept method arguments via middleware.
For example, this would allow you to broadcast changes about your Documents every time someone set
s a path in your Document to a new value:
schema;
Moreover, you can mutate the incoming method
arguments so that subsequent middleware see different values for those arguments. To do so, just pass the new values to next
:
; // pre declaration is chainable;
Schema gotcha
type
, when used in a schema has special meaning within Mongoose. If your schema requires using type
as a nested property you must use object notation:
broken: type: Boolean asset : name: String type: String // uh oh, it broke. asset will be interpreted as String ; works: type: Boolean asset : name: String type: type: String // works. asset is an object with a type property ;
Driver access
The driver being used defaults to node-mongodb-native and is directly accessible through YourModel.collection
. Note: using the driver directly bypasses all Mongoose power-tools like validation, getters, setters, hooks, etc.
API Docs
Find the API docs here, generated using dox and acquit.
License
Copyright (c) 2010 LearnBoost <dev@learnboost.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.