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

redink

Package Overview
Dependencies
Maintainers
1
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redink

RethinkDB ORM

  • 0.1.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
14
decreased by-68.89%
Maintainers
1
Weekly downloads
 
Created
Source

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 06 Aug 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

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