npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mongoose-crudl

v1.1.2

Published

CRUDL operations with Mongoose. (Create, Read, Update, Delete, List)

Downloads

76

Readme

mongoose-crudl

CRUDL operations for Mongoose: Create, Read, Update, Delete, & List.

Installation

npm i --save mongoose-crudl

Usage

The following functions are exported in the index.js file:

import { list, createOne, readOne updateOne, patchOne, deleteOne, deleteMany } from 'mongoose-crudl'

These functions are asynchronous by nature, so they return a Javascript promise.

In the following examples, we are going to use async and await, and we assume you will do the same in your code. That is why, whenever the promise returned by the function resolves something, we will refer it to as the function returns that value. Whenever the promise returned by the function rejects something, we will refer it as the function throws an error.

Common parameters

The first two parameters of all of the functions in this lib are the same. The first one is the 'Model' and the second is called 'params'.

Model

All of these functions operate on a Mongoose model, and you have to pass the model as the first argument for all of these functions.

Params

The second parameter for all of the functions in this lib is an object called params. The properties on this objects are intended to be property names in your Mongoose model, and the values are most likely Mongoose ObjectId-s (or the string representation of them).

The properties of the params object are always merged into the filter object, and in case of createOne & updateOne, they are merged into the data object that is sent to the database.

In order to use this lib efficiently, you should add all of the related ids to your Mongoose model. For example, let's say that you have model A, model B, and model C. Model A and B are in a 1-N relationship, model B and C are also in a 1-N relationship. In this case, you will have to put a reference of A into C:

import mongoose from 'mongoose'

const aSchema = new mongoose.Schema({
  name: { type: String, required: true }
})
const aModel = mongoose.model('A', aSchema)

const bSchema = new mongoose.Schema({
  aId: { type: mongoose.Schema.ObjectId, ref: 'A', required: true },

  name: { type: String, required: true }
})
const bModel = mongoose.model('B', bSchema)

const cSchema = new mongoose.Schema({
  aId: { type: mongoose.Schema.ObjectId, ref: 'A', required: true },
  bId: { type: mongoose.Schema.ObjectId, ref: 'B', required: true },

  name: { type: String, required: true }
})
const cModel = mongoose.model('C', cSchema)

Wondering why we call this object params? It comes from express' naming convention. There, you reach the URL params on the req.params object, which you always should add to your filter if the name of the params are equal to the property names in your model. So, if I want to create a route in express for cModel in my example above, then the route will be the following: /v1/a/:aId/b/:bId/c, so req.params will contain aId and bId. (And you definitely want to add those fields to your filter.)

Functions

In the following section, you can read about the CRUDL functions exported by this lib.

list(Model, params, query)

A function for querying your collection.

Parameters: Name | Type | Description --- | --- | --- Model | Mongoose model | A Mongoose model. params | Object | A params object. query | Object | A query object, described below. query.filter | Object | A Mongoose filter object, that can be applied to Model.find(). query.select | Object | A Mongoose select object. Be careful, use the object syntax, not the array / string syntax! query.sort | Object | A Mongoose sort object. Be careful, use the object syntax, not the string syntax! The default sort object is { createdAt: -1 }. query.skip | Number | The number of records to skip in the result. (See Mongoose skip.) If you pass a string value as query.skip, then it will be parsed as an integer. query.limit | Number | The maximum number of items in the result. (See Mongoose limit.) If you pass a string value ask query.limit, then it will be parsed as an integer.

Returns:

{
  status: 200, // If everything goes well, we can set a HTTP 200 status code.
  result: {
    items: [], // The items resulted by the query object (filter, select, sort, skip, & limit)
    count: 0 // The number of items that satisfy query.filter
  }
}

Throws:

Example:

import { list } from 'mongoose-crudl'

import ExampleModel from './your/mongoose/model.js'

...

try {
  const response = await list(ExampleModel, params, query)
  
  console.log(response.status) // the HTTP status code of the operation: 200
  console.log(response.result.count) // the number of item satisfies query.filter
  console.log(response.result.items) // an array of objects based on your model
} catch (e) {
  console.error(e) // error thrown by the mongodb or the mongoose package, most likely a connection error
}

createOne(Model, params, body)

Creates an entry in your db.

Parameters: Name | Type | Description --- | --- | --- Model | Mongoose model | A Mongoose model. params | Object | A params object. body | Object | The data which will be inserted to the db.

Note: the params object will be merged into the body before inserting.

Returns:

{
  status: 201, // If everything goes well, we can set a HTTP 201 status code.
  result: { ... } // the new entry inserted into the db.
}

Throws:

Example:

import { createOne } from 'mongoose-crudl'

import ExampleModel from './your/mongoose/model.js'

...

try {
  const response = await createOne(ExampleModel, params, body)
  
  console.log(response.status) // the HTTP status code of the operation: 201
  console.log(response.result) // the newly created MongoDB entry
} catch (e) {
  console.log(e)
}

readOne(Model, params, query)

Reads an entry from your db.

Parameters: Name | Type | Description --- | --- | --- Model | Mongoose model | A Mongoose model. params | Object | A params object. query | Object | A query object that only has a select prop. query.select | Object | A Mongoose select object. Be careful, use the object syntax, not the array / string syntax!

Side note: The params object should contain an id field, which will be mapped to the default _id field of MongoDB.

Returns:

{
  status: 200,
  result: { ... } // the entry you were looking for
}

Throws:

Example:

import { readOne } from 'mongoose-crudl'

import ExampleModel from './your/mongoose/model.js'

...

try {
  const response = await readOne(ExampleModel, params, query)
  
  console.log(response.status) // the HTTP status code of the operation: 200
  console.log(response.result) // the entry you were looking for
} catch (e) {
  console.log(e)
}

updateOne(Model, params, body)

Updates an entry in your db.

Parameters: Name | Type | Description --- | --- | --- Model | Mongoose model | A Mongoose model. params | Object | A params object. body | Object | The data which will be inserted to the db.

Side note: The params object should contain an id field, which will be mapped to the default _id field of MongoDB.

Side note: the params object will be merged into the body before updating.

Returns:

{
  status: 200,
  result: { ... } // the updated entry
}

Throws:

Example:

import { updateOne } from 'mongoose-crudl'

import ExampleModel from './your/mongoose/model.js'

...

try {
  const response = await updateOne(ExampleModel, params, body)
  
  console.log(response.status) // the HTTP status code of the operation: 200
  console.log(response.result) // the updated entry
} catch (e) {
  console.log(e)
}

patchOne(Model, params, body)

Patches an entry in your db.

Parameters: Name | Type | Description --- | --- | --- Model | Mongoose model | A Mongoose model. params | Object | A params object. body | Object | The data which will be inserted to the db.

Side note: The params object should contain an id field, which will be mapped to the default _id field of MongoDB.

Side note: the params object will be merged into the body before updating.

Returns:

{
  status: 200,
  result: { ... } // the updated entry
}

Throws:

Example:

import { patchOne } from 'mongoose-crudl'

import ExampleModel from './your/mongoose/model.js'

...

try {
  const response = await patchOne(ExampleModel, params, body)
  
  console.log(response.status) // the HTTP status code of the operation: 200
  console.log(response.result) // the updated entry
} catch (e) {
  console.log(e)
}

deleteOne(Model, params)

Removes an entry from your db.

Parameters: Name | Type | Description --- | --- | --- Model | Mongoose model | A Mongoose model. params | Object | A params object.

Side note: The params object should contain an id field, which will be mapped to the default _id field of MongoDB.

Returns:

{
  status: 200,
  result: { ... } // the removed entry
}

Throws:

Example:

import { deleteOne } from 'mongoose-crudl'

import ExampleModel from './your/mongoose/model.js'

...

try {
  const response = await deleteOne(ExampleModel, params, query)
  
  console.log(response.status) // the HTTP status code of the operation: 200
  console.log(response.result) // the entry you removed
} catch (e) {
  console.log(e)
}

deleteMany(Model, params)

Often times, you will need to remove all of the related elements of an entry. This function is a utility function for exactly that.

Parameters: Name | Type | Description --- | --- | --- Model | Mongoose model | A Mongoose model. params | Object | A params object.

Side note: In this case, the params object should not contain an id field.

Returns:

{
  status: 200,
  result: {} // a summary about how many elements are actually deleted.
}

Throws:

Example:

import { deleteOne, deleteMany } from 'mongoose-crudl'

import ExampleModel1 from './your/mongoose/model.js'
import ExampleModel2 from './your/mongoose/model.js'

// Let's assume, that ExampleModel2 has a field called 'ref', referring to an ExampleModel1 entry

...

try {
  const response = await deleteOne(ExampleModel1, params, query)
  
  console.log(response.status) // the HTTP status code of the operation: 200
  console.log(response.result) // the entry you removed

  deleteMany(ExampleModel2, { ref: response.result.ref }) // you probably don't want to await for the results, since the main entry is already removed.
} catch (e) {
  console.log(e)
}