Klein
A small ORM that combines ImmutableJS and knex.
Models are just Immutable Maps and have no database related instance methods. All querying is done statically from the model's class.
Migration CLI
Generate a new model (and migration):
klein generate model NAME [field:type [field:type]]
...where type
is anything in the knex Schema methods.
Generate a new migration:
klein generate migration NAME
Run any pending migrations:
klein db migrate
And rollback the last migration group:
klein db rollback
Get the current schema version:
klein db version
Get the schema (for a table):
klein db schema [table]
You can configure where Klein will put the models and migrations in your package.json
:
{
"klein": {
"migrationsPath": "migrations"
"modelsPath": "app/server/models"
}
}
Usage
The easiest init is:
const Klein = require('klein/auto');
But if you need to specify a database URL:
const Klein = require('klein').connect(process.env.DATABASE_URL);
Or, if you already have an instanciated knex
object:
const Klein = require('klein').connect(knex);
You can define models before connecting:
const Klein = require('klein');
const Users = Klein.model('users');
Be sure to call .connect()
before using the model:
const Klein = require('klein');
const Users = Klein.models('users');
Klein.connect();
Users.where({ email: 'test@test.com' });
A bigger example:
const Users = Klein.model('users', {
hooks: {
beforeCreate(user) {
user = user.set('fullName', [user.get('firstName'), user.get('lastName')].join(' '));
return user;
}
},
relations: {
projects: { hasAndBelongsToMany: 'projects' }
department: { belongsTo: 'department' },
shirts: { has_many: 'shirts', dependent: true }
},
contexts: {
simple: ['list', 'of', 'field', 'names'],
derived (user) {
return user.merge({
full_name: [user.get('firstName'), user.get('lastName')].join(' ')
});
}
}
})
Hooks
Models expose a few hooks to help you manage the data going into the database.
Those hooks are (and generally called in this order):
beforeCreate
- Called before a model is created. ReturnbeforeSave
- Called before a model is saved (including just before it is created)afterSave
- Called just after a model is saved (including just after it was created)afterCreate
- Called just after a model is createdbeforeDestroy
- Called just before a model is deletedafterDestroy
- Called just after a model is deleted
Hooks are just functions and take the model (minus any relations) as the first argument.
Klein.model('users', {
hooks: {
beforeCreate(model) {
return model.set('something', 'default value');
}
}
});
You can also return a promise:
Klein.model('users', {
hooks: {
beforeCreate(model) {
return getSomeValue().then(value => {
return model.set('something', value);
});
}
}
});
For models with a custom type definition, the custom instances are passed to the hooks.
createdAt
and updatedAt
If you want to change the names of the createdAt
and updatedAt
automatic fields you can add this to your model:
const Users = Klein.model('users', {
timestamps: {
createdAt: 'created_at',
updatedAt: 'updated_at'
}
});
...or even just turn them off altogether:
const Users = Klein.model('users', {
timestamps: false
});
To have different or disabled timestamps in your migrations you can set them in your package.json
with either of these:
{
"klein": {
"timestamps": {
"createdAt": "created_at",
"updatedAt": "updated_at"
}
}
}
{
"klein": {
"timestamps": false
}
}
Create
const Users = Klein.model('users');
Users.create({ name: 'Nathan' }).then(user => {
user.get('name');
});
Users.create([{ name: 'Nathan' }, { name: 'Lilly' }]).then(users => {
users.count();
});
Find
Users.where({ email: 'test@test.com' })
.first()
.then(user => {
user = user.set('name', 'Test');
Users.save(user).then(updated_user => {
user.get('name');
});
});
Users.find(1).then(user => {
user.get('id');
});
Users.all().then(users => {
Users.json(users);
});
Persisting
user = user.set('firstName', 'Nathan');
Users.save(user).then(user => {
user.get('updatedAt');
});
Saving a model that has relations
attached will also attempt to save the attached related rows.
Destroy
Users.destroy(user).then(user => {
});
Any dependent related records will also be destroyed (see down further in Associations/Relations).
Converting to json
Models can be converted to json and include either all fields or only selected fields based on a context mapper.
Contexts are defined on the model:
const Users = Klein.model('users', {
contexts: {
simple: ['list', 'of', 'field', 'names'],
derived(user) {
return user.merge({
fullName: [user.get('firstName'), user.get('lastName')].join(' ')
});
}
}
});
Users.json(users);
Users.json(users, 'simple');
Users.json(users, 'derived');
Users.json(users);
Users.json(user);
Users.json(user, 'simple');
Users.json(user, 'derived');
Associations/Relations
Define relations
on the collection:
const Users = Klein.model('users', {
relations: {
projects: { hasAndBelongsToMany: 'projects' }
department: { belongsTo: 'department' },
shirts: { hasMany: 'shirts', dependent: true }
}
});
Set them on a model and save them. Anything that hasn't already been saved will be saved.
let newProject = {
name: 'Some cool project'
};
let newUser = {
name: 'Nathan',
projects: [new_project]
};
Users.create(newUser).then(user => {
user.get('projects');
});
And then retrieve them.
Users.include('projects')
.all()
.then(users => {
users.first().get('project');
});
You can specify the key fields and table if needed:
const Users = Klein.model('users', {
relations: {
projects: { hasAndBelongsToMany: 'projects', through: 'project_people', primaryKey: 'userId', foreignKey: 'projectId' }
department: { belongsTo: 'department', foreignKey: 'departmentId', table: 'department' },
shirts: { has_many: 'shirts', dependent: true, foreignKey: 'userId' }
}
});
Transactions
To wrap your actions inside a transaction just call:
const Klein = require('klein').connect(process.env.DATABASE_URL);
const Users = Klein.model('users');
const Hats = Klein.model('hats');
Klein.transaction(transaction => {
let nathan = {
name: 'Nathan'
};
return Users.create(nathan, { transaction }).then(user => {
return Hats.create({ type: 'Cowboy' }, { transaction });
});
})
.then(() => {
})
.catch(err => {
});
Custom types
By default, Klein returns Immutable.Map
as instances with it's key and values mapped to the table's columns and values. It's possible to supply your own type definition for Klein to accept and return, as long as it can convert both ways.
const Klein = require('klein').connect(process.env.DATABASE_URL);
const Users = klein.model('users', {
type: {
factory(rawProperties) {
return Immutable.fromJS(rawProperties).set('type', 'user');
},
instanceOf(maybeInstance) {
return Immutable.Map.isMap(maybeInstance) && maybeInstance.get('type') === 'user';
},
serialize(instance, options) {
return instance.remove('type').toJS()
}
}
})
Users.create({ name: 'Nathan' }).then(user => {
user.get('type');
});
Note: when using hooks, the custom type instances are passed to the hooks, instead of the default Immutable.Map
.
Vry
Instead of defining your own custom types, Klein works really well with Vry, which allows you to easily setup your type's logic. Just like Klein it uses Immutable.Map
for instances, but adding a bit of metadata to allow for type identification, nested types, merging, references, etc.
const klein = require('klein').connect(process.env.DATABASE_URL);
const { Model } = require('vry')
const Invariant = require('invariant')
const User = Model.create({
typeName: 'user',
defaults: {
name: 'Unknown user',
email: null
}
})
User.hasEmail = function(user) {
Invariant(User.instanceOf(user), 'User required to check whether user has an email')
return !!user.get('email')
}
const Users = klein.model('users', {
type: User
})
Users.create({ name: 'Nathan' }).then(user => {
User.hasEmail(user)
});
Users.all().then(users => {
User.collectionOf(users)
});
Contributors