odmongo

1.0.0-beta.1 • Public • Published

odmongo

A barebones MongoDB ODM designed for use with modern ES syntax.

It provides a very small wrapper that you can extend in various places to build yourself a nice DB library.

Usage

In short:

const joi = require('joi')
const { Connection, Model } = require('odmongo')

// Set up a connection instance
const connection = new Connection()

// Create some Model classes
class User extends Model {
  validate () {
    return joi.validate(this.fields, User.schema)
  }
}
User.schema = joi.object({
  username: joi.string().required()
})
User.collection = 'users'

// Register models on the connection instance
connection.define({ User })

// Connect!
await connection.connect('mongodb://localhost:27017/my_db')

// Query existing documents
for await (const user of connection.models.User.find()) {
  console.log(user.fields.username)
}

// Create new documents
const user = new connection.models.User({
  username: 'Me'
})
try {
  await user.save()
  console.log('saved')
} catch (err) {
  console.error('Could not save the new user:', err.message)
}

API

See the documentation in API.md.

License

Apache-2.0

Readme

Keywords

Package Sidebar

Install

npm i odmongo

Weekly Downloads

3

Version

1.0.0-beta.1

License

MIT

Unpacked Size

32.5 kB

Total Files

18

Last publish

Collaborators

  • goto-bus-stop