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

corm

v2.0.1

Published

An ORM using async/await

Downloads

36

Readme

CORM

i like corm

build status Coverage Status

This is the beginnings of a project to make a full-featured ORM that takes advantage of generators, which should make the codebase and usage of the library vastly simpler. I spent weeks digging through existing node ORM implementations, only to find myself dissatisfied with how convoluted they all seemed to be.

Installation

npm install corm

Usage

const model = corm('localhost/test')
const User = model('users')

const user = User.build({
  email: '[email protected]'
})
yield user.save()

yield user.update({
  name: 'me'
})

yield user.remove()

Notes

In typical node fashion, this module is meant to be simple. This means it lacks many features you may expect of an ORM which are intended to be implemented externally. Here are a few to be aware of:

  • No schema validation, but you can do that yourself by overriding model.validate().
  • No multi-error support from model.validate(). It expects a single throw, but you can populate a model.errors array yourself.
  • There is not yet any relational components, that will likely be an external module.
  • Presently, it is completely tied to mongodb + monk. This will change later when I figure out a good plugin interface.

Model API

Statics

Model.build(data)

Build a model instance.

yield Model.create(data)

Build and save a model instance.

yield Model.find(query)

Find an array of model instances using a query object.

yield Model.findOne(query)

Find one model instance using a query object.

yield Model.findById(id)

Find one model instance by id.

yield Model.findOrCreate(data)

Find or create a model instance given a set of data

yield Model.createOrUpdate(query, changes)

Create or update a model instance given a query and change set

yield Model.update(query, data)

Update any records that match the query.

yield Model.updateById(id, data)

Update the record that matches the query.

yield Model.remove(query)

Remove any records that match the query.

yield Model.removeById(id)

Remove the record that matches the query.

yield Model.count(query)

Count number of records matching the query.

Model.index(...)

Currently, this is passed through directly to monk.

Base methods

model.isNew()

This method is mostly used internally to detect if a model exists in the database already. Currently, it simply checks for existence of a _id property.

yield model.save()

Insert new models or update already persisted models.

yield model.update(data)

Apply the input data to the model and save it.

yield model.remove()

Remove the model from the database.

yield model.fetch()

Fetch the latest model state from the database.

Hook methods

There are several hook methods that can be overridden to trigger things before or after various interactions. Each must be a generator function. These methods include:

  • beforeSave
  • beforeCreate
  • beforeUpdate
  • beforeRemove
  • beforeValidate
  • afterSave
  • afterCreate
  • afterUpdate
  • afterRemove
  • afterValidate

Copyright (c) 2013 Stephen Belanger

Licensed under MIT License

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.