Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

couchbase-model-decorator

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

couchbase-model-decorator

My terrific module

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

couchbase-model-decorator Build Status

A couchbase interface using decorator and joi

Install

$ npm install --save couchbase-model-decorator

Usage

orm.js:

import path from 'path';

import couchbase from 'couchbase';
import couchbaseModelDecorator from 'couchbase-model-decorator';

const cluster = new couchbase.Cluster();
const bucket = cluster.openBucket();

export const model = couchbaseModelDecorator(bucket);

models/user.js:

import Joi from 'joi';
import {model} from './orm';

@model('user')
export default class {
    username = Joi.string().alphanum();
    password = Joi.string();
    email = Joi.string();
}
import user from './models/user';

user.insert({
    username: 'user',
    password: 'pass',
    email: 'test@test.com'
})
.then(result => {
    console.log(result);
})

API

couchbaseModelDecorator(couchbaseBucket)

return a decorator method which can be used on models

couchbaseBucket

Type: Bucket

couchbase bucket to which we will connect to

License

MIT © Thomas Sileghem

FAQs

Package last updated on 29 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc