New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

redink

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redink

RethinkDB ORM


Version published
Maintainers
2
Created

Redink

RethinkDB ORM

CircleCI codecov

![dink] [dink]: http://www.dvd.net.au/movies/s/05627-2.jpg

Installation

Install node.js Then:

$ npm install redink

Overview

Define your schemas

First we need to define our schemas.

Example schemas.js file:

export default {
  user: {
    attributes: {
      name: true,
      email: true,
    },
    relationships: {
      blogs: {
        hasMany: 'blog',
        inverse: 'user',
      },
    },
  },
  blog: {
    attributes: {
      title: true,
      content: true,
    },
    relationships: {
      user: {
        belongsTo: 'user',
        inverse: 'blogs',
      },
    },
  },
};

Connect to RethinkDB

Then we need to start the connection:

import redink from 'redink';
import schemas from './schemas';

const db = redink();

const option = {
  host, // RethinkDB host
  name, // Name of the database to connect to
  schemas, // Imported schemas object
};

db.start(options).then(...);

Redink database methods

Here is a list of redink methods

⋅⋅1) create ⋅⋅2) update ⋅⋅3) archive ⋅⋅4) find ⋅⋅5) fetch ⋅⋅6) fetchRelated

Create
import { create } from 'redink';

create('user', {
  name: 'CJ',
  email: 'brewercalvinj@gmail.com',
}).then(response => {
  // response
  {
    id: '1',
    name: 'CJ',
    email: 'brewercalvinj@gmail.com',
  }
});

create('blog', {
  title: 'How to redink',
  content: 'Content of my blog',
  user: '1',
}).then(response => {
  //response
  {
    id: '2',
    title: 'How to redink',
    content: 'Content of my blog',
    user: {
      id: '1',
      name: 'CJ',
      email: 'brewercalvinj@gmail.com',
      blogs: ['2'],
    },
  }
});

Keywords

FAQs

Package last updated on 20 Sep 2016

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