Socket
Socket
Sign inDemoInstall

mongoose

Package Overview
Dependencies
Maintainers
4
Versions
883
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongoose

Mongoose MongoDB ODM


Version published
Weekly downloads
2.7M
increased by0.74%
Maintainers
4
Weekly downloads
 
Created

What is mongoose?

Mongoose is an Object Data Modeling (ODM) library for MongoDB and Node.js. It manages relationships between data, provides schema validation, and is used to translate between objects in code and the representation of those objects in MongoDB.

What are mongoose's main functionalities?

Schema Definition

Defines a schema for a collection with various field types, validation, and defaults.

{"const mongoose = require('mongoose');\nconst Schema = mongoose.Schema;\nconst blogSchema = new Schema({\n  title: String,\n  author: String,\n  body: String,\n  comments: [{ body: String, date: Date }],\n  date: { type: Date, default: Date.now },\n  hidden: Boolean,\n  meta: {\n    votes: Number,\n    favs: Number\n  }\n});"}

Model Creation

Creates a model based on a defined schema, which can then be used to create, read, update, and delete documents of that schema type.

{"const mongoose = require('mongoose');\nconst Blog = mongoose.model('Blog', blogSchema);"}

Connection to MongoDB

Establishes a connection to a MongoDB database.

{"const mongoose = require('mongoose');\nmongoose.connect('mongodb://localhost/my_database', {useNewUrlParser: true, useUnifiedTopology: true});"}

Querying

Queries the database for documents matching certain criteria.

{"Blog.find({ author: 'John Doe' }).exec((err, blogs) => {\n  if (err) return handleError(err);\n  console.log('The blogs are', blogs);\n});"}

Data Validation

Ensures that the data being saved to the database meets certain criteria defined in the schema.

{"const personSchema = new Schema({\n  name: {\n    type: String,\n    required: true\n  },\n  age: {\n    type: Number,\n    min: 18,\n    max: 65\n  }\n});"}

Middleware (Hooks)

Allows execution of code before or after certain actions, such as saving a document.

{"blogSchema.pre('save', function(next) {\n  if (!this.isModified('title')) {\n    return next();\n  }\n  this.modifiedAt = Date.now();\n  next();\n});"}

Other packages similar to mongoose

Keywords

FAQs

Package last updated on 18 Sep 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc