Node.js ODM for Couchbase
Ottoman is an ODM built for Couchbase and Node.js.
Ottoman's goal is to provide a better development experience while using Couchbase, bringing to developers a reliable tool to build systems that are easy to design, maintain, and scale.
npm install ottoman
That's it, you are ready to use Ottoman.
Supported version are:
| Ottoman | Nodejs | Couchbase SDK | Couchbase Server | ----------- | ----------- | --------------- | ----------------- | ^2.0.0 | ^8.0.0 | ^3.0.0 | ^6.5.0
Notice: make sure you are using supported versions
import { connect, model } from "ottoman"; connect("couchbase://localhost/[email protected]:password");const User = model('User', { name: String });
const user = new User({name:'Jane Doe'}); user.save().then(() => console.log('Nice Job!'));
To check out
examplesand docs, visit v2.ottomanjs.com.
For questions and support please use the official forum or contact community.
Please make sure to read the Issue Reporting Checklist before opening an issue.
Detailed changes for each release are documented in the release notes.
Please make sure to read the
Contributing Guidebefore making a pull request. Thank you to all the people who already contributed to Couchbase Ottoman!
Get the repo and install dependencies
$ git clone https://github.com/couchbaselabs/node-ottoman.git $ cd node-ottoman $ yarn install
$ yarn dev $ yarn build $ yarn lint $ yarn test $ yarn test --coverage $ yarn docs $ yarn docs:dev
Check results on http://localhost:8091/ couchbase web client
© Copyright 2013 Couchbase Inc.
Licensed under the Apache License, Version 2.0. See the Apache 2.0 license.