Ormur
A simple, sane & modern ORM library for Node.js
Features
- High extensibility and behaviour customization via inheritance.
- Schema validation and custom field validations.
- High-level query interface along with a Knex instance for custom queries.
- Use promises instead of callbacks to interact with the database.
- Default values and value transformations before creating records.
- Automatic
snake_case
(for the database) and camelCase
(for JavaScript) handling. - Safe JSON serialization by omitting private fields.
And much more - see the example below to get an idea.
Install
Requires Node.js v4.0.0 or higher.
npm install ormur
Examples
Check out the basic example
for an example of a minimal base model and an example model inheriting from it.
For an example of how you may share schema between models, check the advanced
example.
The User
model defined in the above examples could be used like this,
assuming that the relevant database table exists:
const User = require('./example/basic/user');
const user = new User({ name: 'Hawk', email: 'test@example.com', password: 'password' });
user.save().then(user => {
console.log(`User ${user.name} with id ${user.id} saved.`);
});
User.where({ name: 'Hawk' }).then(users => {
console.log(users);
});
User.find(1).then(user => user.destroy());
User.destroy(1);
API
Documentation pending.
Static methods
Ormur.find
- Find row by primary key.Ormur.where
- Find rows by attributes.Ormur.create
- Create row with attributes.Ormur.destroy
- Remove row by primary key.
Instance methods
Ormur#validate
- Validate attributes.Ormur#save
- Insert row into database with attributes from instance.Ormur#update
- Update existing row in database with attributes from instance.Ormur#destroy
- Remove row from database by primary key of instance.Ormur#setDefaults
- Set default values to instance attributes.Ormur#merge
- Merge two objects (inheritance helper).