Thinky
===============================
Light Node.js ORM for RethinkDB.
Quick start
Install:
npm install thinky
Use:
var thinky = require('thinky')();
var Post = thinky.createModel("Post", {
id: String,
title: String,
content: String,
idAuthor: String
});
var Author = thinky.createModel("Author", {
id: type.string(),
name: type.string().min(2)
email: type.string().email()
});
Post.belongsTo(Author, "author", "idAuthor", "id");
Save a new post with its author.
var post = new Post({
title: "Hello World!",
content: "This is an example."
});
var author = new Author({
name: "Michel",
email: "orphee@gmail.com"
});
post.author = author;
post.saveAll().then(function(result) {
});
Retrieve the post with its author.
Post.get("0e4a6f6f-cc0c-4aa5-951a-fcfc480dd05a").getJoin().run().then(function(result) {
});
Docs
http://thinky.io
Run the tests
npm test
Contribute
You are welcome to do a pull request.
Roadmap
The roadmap is defined with the issues/feedback on GitHub. Checkout:
https://github.com/neumino/thinky/issues
Author
Contributors
License
Copyright (c) 2013-2014 Michel Tu orphee@gmail.com
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.