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

crudibility

v0.0.2

Published

CRUD functionality for Mongoose models

Downloads

3

Readme

CRUDibility

Explain, please.

Crudibility is a plugin for Mongoose models that allows for various CRUD (Create, Read, Update, Delete) features in a conveniently configurable way.

Table of Contents

Installation

var mySchema = new mongoose.Schema({...});
var crudibility = require('crudibility');
mySchema.plugin(crudibility);

Methods

add

Signature

add(attributes, [options], callback)
  • attributes - hash of attributes to put in the document
  • options (optional)
    • fields - see defaultFields section for details
    • populate - see crudiblePopulate section for details
  • callback - called with (err, document)

Example

mongoose.models.Foo.add(
  {
    foo: 'bar'
  },
  {
    fields: 'foo',
    populate: [{
      path: 'baz'
    }]
  }, function (err, doc) {
    // a new document { foo: 'bar' } should now be in the database
  }
);

edit

Signature

edit(attributes, [options], callback)
  • attributes - hash of attributes to set on the document, will only change attributes explicitly mentioned and leave old ones
    • must include an _id of the document to edit
  • options (optional)
    • fields - see fields section for details
    • populate - see populate section for details
  • callback - called with (err, document)

Example

mongoose.models.Foo.edit(
  {
    _id: '000000000000000000000001',
    foo: 'bar'
  },
  {
    fields: 'foo',
    populate: [{
      path: 'baz'
    }]
  }, function (err, doc) {
    // ...
  }
);

view

Signature

view(params, callback)
  • params
    • _id - can use _id to retrieve a specific document
    • match - alternative to _id, can enter matching parameters (e.g. {foo: 'bar'} to retrieve the first document with field foo matching 'bar')
    • fields - see fields section for details
    • populate - see populate section for details
  • callback - called with (err, document)

Example

mongoose.models.Foo.view(
  {
    _id: '000000000000000000000001',
    fields: 'foo',
    populate: [{
      path: 'baz'
    }]
  }, function (err, doc) {
    // ...
  }
);

list

Signature

list(params, callback)
  • params
    • match - can enter matching parameters (e.g. {foo: 'bar'} to retrieve documents with field foo matching 'bar')
    • fields - see fields section for details
    • sort - takes the same options as Mongoose's sort option
    • populate - see populate section for details
    • paginate - see paginate section for details
  • callback - called with (err, documents, meta)

Example

mongoose.models.Foo.list(
  {
    match:
      foo: 'bar'
    fields: 'foo',
    populate: [{
      path: 'baz'
    }]
  }, function (err, docs, meta) {
    // ...
  }
);

delete

Signature

delete(params, callback)
  • params
    • _id - use _id to delete a specific document
  • callback - calls back with (err, document). The document will not be populated as with other methods.

Example

mongoose.models.Foo.delete(
  {
    _id: '000000000000000000000001'
  }, function (err, doc) {
    // doc's all gone from the database now!
  }
);

Options

Setting Defaults

When installing the plugin, you can define default options for the model as follows:

var crudibility = require('crudibility');
mySchema.plugin(crudibility, {
  defaultFields: 'foo', // see fields section below for details
  defaultPopulate: [],  // see populate below for details
  defaultPaginate: {}   // see paginate below for details
});

fields

fields options follow the same convention as Mongoose's select.

populate

Crudibility allows for nested populates. Nested populates should be nested within their parent populate. For example:

{
  populate: [
    path: 'baz',    // will populate the document at path 'baz'
    model: 'Baz',   // will populate from the Baz model (this is required!)
    select: 'qux',  // will populate from the Baz model with field 'qux'
    populate: [
      path: 'baz.qux',  // second-level populate, since it depends on 'baz' being populated first
      model: 'Qux',
      select: 'foo'
    ]
  ]
}

paginate

Paginate options determine which page and how many documents per page will be returned for a list function.

There are aliases for the same functionality - two examples representing the same options are shown below:

{
  paginate: {
    limit: 2,    // 2 documents per page
    page: 2      // return the third page (pages are zero-indexed)
  }
}
{
  paginate: {
    pageSize: 2,
    currentPage: 2
  }
}

License

Copyright (c) 2014 Chris Baik

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.