GithubHelp home page GithubHelp logo

unleashy / rethinkdb-ts Goto Github PK

View Code? Open in Web Editor NEW

This project forked from rethinkdb/rethinkdb-ts

0.0 0.0 0.0 1013 KB

RethinkDB TypeScript driver

License: Apache License 2.0

JavaScript 0.32% TypeScript 99.68%

rethinkdb-ts's Introduction

rethinkdb-ts

npm node deps licenses downloads size build

Install

npm i rethinkdb-ts

or

yarn add rethinkdb-ts

Import

// if you support import
import { r } from 'rethinkdb-ts';
// if you dont
const { r } = require('rethinkdb-ts');

Initialize

// in an async context
// if you want to initialize a connection pool
await r.connectPool(options);
// if you want to initialize a single connection
const conn = await r.connect(options);

STATUS:

  • Fully working typescript driver!
  • Rebuilt from scratch using the latest ES/TS features for readability and maintainability
  • Drop-in replacement for rethinkdbdash with only some minor changes

CHANGES FROM RETHINKDBDASH

  • Support for complex socket configuration + tls (notice that for SSL/TLS or any configuration more complex than { host: '...', port: '...' } you'll have to encapsulate in a server/servers property:
{ 
   server: {
      host: '172.23.12.2',
      port: 21085,
      tls: true,
      ca: caCert,
      // If your certificate common name doesn't match the host:
      // checkServerIdentity() {}
   }
}

The options for standard connections is described here.

If you want an SSL/TLS, add tls: true and the options described here and

  • Importing property instead of entire library: const {r} = require('rethinkdb-ts') or import {r} from 'rethinkdb-ts' instead of const r = require('rethinkdbdash')(options)
  • No top level initialization, initializing a pool is done by await r.connectPool()
  • No { cursor: true } option, for getting a cursor use .getCursor(runOptions) instead of .run(runOptions)
    • .run() will coerce streams to array by default feeds will return a cursor like rethinkdbdash
  • Uses native promises instead of bluebird
  • A cursor is already a readable stream, no need for toStream()
  • A readable stream is already an async iterator in node 10 no need for .asyncIterator()
  • In a connection pool, reusing open connections that already run queries instead of making queries wait for a connection when max connections exceeded
  • Integrated fully encompasing type definitions

NEW FEATURES

  • serialize / deserialize. You can store the query as a string like this const serializedQuery = r.table(...).filter(...).map(...).serialize() and get it like this r.deserialize(serializedQuery).run() or even r.deserialize<RStream>(serializedQuery).reduce(...).run() the serialized query is a normal string so you can store it in the DB. No need for ugly workarounds like .toString and eval anymore. Also the serialized query is the actual JSON that gets sent to the server so it should be cross-language compatible if any other driver cares to implement it.

DROPPING SUPPORT:

  • Support node < 12
  • Support callbacks
  • Support using .then() directly on a query (optionalRun), it can confuse users that queries are promises leading to false assumptions:
    • Queries are not promises since they are not eagerly evaluated and therefore they can:
      • .run() as many times as you want (promises run only once and return the same value without running other times)
      • be stored for future evaluation (promises run as you create them)
  • Support browsers (Unless it's the only demand of making this driver used instead of rethinkdbdash)
  • Support write streams (Does anyone use it? Will add it if its a popular demand)
  • Multiple connection pools (if someone has a good usecase I'll support it)

rethinkdb-ts's People

Contributors

ronzeidman avatar atassis avatar dependabot[bot] avatar kyranet avatar aikoven avatar gaikwadpratik avatar asakatida avatar anli-xsigns avatar beenotung avatar dominykas avatar gabor-boros avatar joakimbeng avatar maeb avatar lenovouser avatar svizelpritula avatar vladfrangu avatar netopwibby avatar slavasitnikov avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.