1602/jugglingdb
{ "createdAt": "2011-10-05T14:46:25Z", "defaultBranch": "master", "description": "Multi-database ORM for nodejs: redis, mongodb, mysql, sqlite3, postgresql, arango, in-memory...", "fullName": "1602/jugglingdb", "homepage": "http://1602.github.io/jugglingdb/", "language": "JavaScript", "name": "jugglingdb", "pushedAt": "2019-05-08T15:48:50Z", "stargazersCount": 2035, "topics": [], "updatedAt": "2025-11-17T13:27:39Z", "url": "https://github.com/1602/jugglingdb"}[![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Build status][build-image]][build-url] [![Test Coverage][coveralls-image]][coveralls-url]
JugglingDB is cross-db ORM for nodejs, providing common interface to access most popular database formats. Currently supported are: mysql, sqlite3, postgres, mongodb, redis and js-memory-storage (yep, self-written engine for test-usage only). You can add your favorite database adapter, checkout one of the existing adapters to learn how.
Jugglingdb also works on client-side (using WebService and Memory adapters), which allows to write rich client-side apps talking to server using JSON API.
Installation
Section titled “Installation”npm install jugglingdband you should install appropriate adapter, for example for redis:
npm install jugglingdb-redis-hqcheck following list of available adapters
JugglingDB adapters
Section titled “JugglingDB adapters”| Database type | Package name | Maintainer | Build status / coverage |
|---|---|---|---|
| jugglingdb-arango | Andreas Streichardt | ||
| jugglingdb-firebird | Henri Gourvest | ||
| jugglingdb-mongodb | Anatoliy Chakkaev | ||
| jugglingdb-mysql | dgsan | ||
| jugglingdb-nano | Nicholas Westlake | ||
| jugglingdb-postgres | Anatoliy Chakkaev | ||
| jugglingdb-redis-hq | Anatoliy Chakkaev | ||
| jugglingdb-rethink | Tewi Inaba | ||
| jugglingdb-sqlite3 | Anatoliy Chakkaev | ||
| WebService | built-in | Anatoliy Chakkaev | n/a |
| Memory (bogus) | built-in | Anatoliy Chakkaev | n/a |
| DynamoDB | jugglingdb-dynamodb | tmpaul | |
| SQL Server | jugglingdb-mssql | Quadrus | n/a |
| Azure Table Storage | jugglingdb-azure-tablestorage | Vadim Kazakov | n/a |
Participation
Section titled “Participation”- Check status of project on trello board: https://trello.com/board/jugglingdb/4f0a0b1e27d3103c64288388
- Make sure all tests pass (
npm testcommand) - Feel free to vote and comment on cards (tickets/issues), if you want to join team — send me a message with your email.
If you want to create your own jugglingdb adapter, you should publish your
adapter package with name jugglingdb-ADAPTERNAME. Creating adapter is simple,
check jugglingdb/redis-adapter for example. JugglingDB core
exports common tests each adapter should pass, you could create your adapter in
TDD style, check that adapter pass all tests defined in test/common_test.js.
var Schema = require('jugglingdb').Schema;var schema = new Schema('redis', {port: 6379}); //port number depends on your configuration// define modelsvar Post = schema.define('Post', { title: { type: String, length: 255 }, content: { type: Schema.Text }, date: { type: Date, default: function () { return new Date;} }, timestamp: { type: Number, default: Date.now }, published: { type: Boolean, default: false, index: true }});
// simplier way to describe modelvar User = schema.define('User', { name: String, bio: Schema.Text, approved: Boolean, joinedAt: Date, age: Number}, { restPath: '/users' // tell WebService adapter which path use as API endpoint});
var Group = schema.define('Group', {name: String});
// define any custom methodUser.prototype.getNameAndAge = function () { return this.name + ', ' + this.age;};
// models also accessible in schema:schema.models.User;schema.models.Post;SEE schema(3) for details schema usage.
// setup relationshipsUser.hasMany(Post, {as: 'posts', foreignKey: 'userId'});// creates instance methods:// user.posts(conds)// user.posts.build(data) // like new Post({userId: user.id});// user.posts.create(data) // build and save
Post.belongsTo(User, {as: 'author', foreignKey: 'userId'});// creates instance methods:// post.author(callback) -- getter when called with function// post.author() -- sync getter when called without params// post.author(user) -- setter when called with object
User.hasAndBelongsToMany('groups');// user.groups(callback) - get groups of user// user.groups.create(data, callback) - create new group and connect with user// user.groups.add(group, callback) - connect existing group with user// user.groups.remove(group, callback) - remove connection between group and user
schema.automigrate(); // required only for mysql and postgres NOTE: it will drop User and Post tables
// work with models:var user = new User;user.save(function (err) { var post = user.posts.build({title: 'Hello world'}); post.save(console.log);});
// or just call it as function (with the same result):var user = User();user.save(...);
// Common API methods// each method returns promise, or may accept callback as last param
// just instantiate modelnew Post({ published: 0, userId: 1 });
// save model (of course async)Post.create();
// all postsPost.all();
// all posts by userPost.all({ where: { userId: user.id }, order: 'id', limit: 10, skip: 20 });
// the same as prevuser.posts(cb)
// get one latest postPost.findOne({ where: { published: true }, order: 'date DESC' });
// same as new Post({userId: user.id});user.posts.build({ published: 1 });
// save as Post.create({userId: user.id});user.posts.create();
// find instance by idUser.find(1);
// find instance by id and reject promise when not foundUser.fetch(1) .then(user => console.log('found user', user)) .catch(err => console.error('can not fetch user with id 1:', err));
// count instancesUser.count([conditions])
// destroy instanceuser.destroy();
// destroy all instancesUser.destroyAll();
// update multiple instances (currently only on the sql adapters)Post.bulkUpdate({ update: { published: 0 }, where: { id: [1, 2, 3] }});
// update single instancePost.update(1, { published: 1 });SEE model(3) for more information about
jugglingdb Model API. Or man jugglingdb-model in terminal.
// Setup validationsUser.validatesPresenceOf('name', 'email')User.validatesLengthOf('password', {min: 5, message: {min: 'Password is too short'}});User.validatesInclusionOf('gender', {in: ['male', 'female']});User.validatesExclusionOf('domain', {in: ['www', 'billing', 'admin']});User.validatesNumericalityOf('age', {int: true});User.validatesUniquenessOf('email', {message: 'email is not unique'});
user.isValid(function (valid) { if (!valid) { user.errors // hash of errors {attr: [errmessage, errmessage, ...], attr: ...} }})SEE ALSO jugglingdb-validations(3) or
man jugglingdb-validations in terminal. Validation tests: ./test/validations.test.js
The following hooks supported:
- afterInitialize- beforeCreate- afterCreate- beforeSave- afterSave- beforeUpdate- afterUpdate- beforeDestroy- afterDestroy- beforeValidate- afterValidateEach callback is class method of the model, it should accept single argument: next, this is callback which should be called after end of the hook. Except afterInitialize because this method is syncronous (called after new Model).
During beforehooks the next callback accepts one argument, which is used to terminate flow. The argument passed on as the err parameter to the API method callback.
Object lifecycle:
Section titled “Object lifecycle:”var user = new User;// afterInitializeuser.save(callback); // If Model.id isn't set, save will invoke Model.create() instead// beforeValidate// afterValidate// beforeSave// beforeUpdate// afterUpdate// afterSave// callbackuser.updateAttribute('email', 'email@example.com', callback);// beforeValidate// afterValidate// beforeSave// beforeUpdate// afterUpdate// afterSave// callbackuser.destroy(callback);// beforeDestroy// afterDestroy// callbackUser.create(data, callback);// beforeValidate// afterValidate// beforeCreate// beforeSave// afterSave// afterCreate// callbackSEE jugglingdb-hooks or type this command
in your fav terminal: man jugglingdb-hooks. Also check tests for usage
examples: ./test/hooks.test.js
Your own database adapter
Section titled “Your own database adapter”To use custom adapter, pass it’s package name as first argument to Schema constructor:
var mySchema = new Schema('mycouch', {host:.., port:...});In that case your adapter should be named as ‘jugglingdb-mycouch’ npm package.
Testing [outdated]
Section titled “Testing [outdated]”TODO: upd this section
Core of jugglingdb tests only basic features (database-agnostic) like
validations, hooks and runs db-specific tests using memory storage. It also
exports complete bucket of tests for external running. Each adapter should run
this bucket (example from jugglingdb-redis):
var jdb = require('jugglingdb'),Schema = jdb.Schema,test = jdb.test;
var schema = new Schema(__dirname + '/..', {host: 'localhost', database: 1});
test(module.exports, schema);Each adapter could add specific tests to standart bucket:
test.it('should do something special', function (test) { test.done();});Or it could tell core to skip some test from bucket:
test.skip('name of test case');To run tests use this command:
npm testBefore running make sure you’ve installed package (npm install) and if you
running some specific adapter tests, ensure you’ve configured database
correctly (host, port, username, password).
Contributing
Section titled “Contributing”If you have found a bug please try to write unit test before reporting. Before submit pull request make sure all tests still passed. Check roadmap, github issues if you want to help. Contribution to docs highly appreciated. Contents of man pages and http://1602.github.com/jugglingdb/ generated from md files stored in this repo at ./docs repo
MIT License
Section titled “MIT License”Copyright (C) 2011 by Anatoliy Chakkaev <mail [åt] anatoliy [døt] in>
Permission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included inall copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, 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 INTHE SOFTWARE.[coveralls-url] !: https://coveralls.io/github/1602/jugglingdb [coveralls-image] !: https://coveralls.io/repos/github/1602/jugglingdb/badge.svg?branch=master [build-url] !: https://circleci.com/gh/1602/jugglingdb [build-image] !: https://circleci.com/gh/1602/jugglingdb.svg?style=shield [npm-image] !: https://img.shields.io/npm/v/jugglingdb.svg [npm-url] !: https://npmjs.org/package/jugglingdb [downloads-image] !: https://img.shields.io/npm/dm/jugglingdb.svg [downloads-url] !: https://npmjs.org/package/jugglingdb
