npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@rebirthdb/rebirthdb-ts

v2.4.0-rc.5

Published

RebirthDB TypeScript driver

Downloads

8

Readme

Install

npm i @rebirthdb/rebirthdb-ts

or

yarn add @rebirthdb/rebirthdb-ts

Import

// if you support import
import { r } from '@rebirthdb/rebirthdb-ts';
// if you dont
const { r } = require('@rebirthdb/rebirthdb-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 scrach using the latest ES/TS features for readability and maintainability
  • Drop-in replacement for rethinkdbdash with only some minor changes

CHANGES FROM RETHINKDBDASH

  • Importing property instead of entire library: const {r} = require('rebirthdbts') or import {r} from 'rebirthdbts' 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 connction 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 < 8
  • 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 for r.row you can use row => row instead. (may add support in the future)
  • Support write streams (Does anyone uses it? will add it if its a popular demand)
  • Multiple connection pools (if someone has a good usecase I'll support it)

TASKS REMAINING BEFORE RELEASE:

Priority - medium

  • Publish in NPM
  • Go through all type definitions and fix according to config (maybe use https://github.com/rethinkdb/rethinkdb/blob/3edaeceb71c2caf1203025a752f61786364528ed/drivers/java/term_info.json)

Priority - low

  • New API tests (write hooks and bit ops)
  • Supporting implicit var (r.row)
    • Use a lambda expression instead (row => row)

Priority - none

  • Don't throw on r.expr(NaN) (only on r.expr(NaN).run()). Why? (test: r.expr should not NaN if not run)
  • Client backtraces - because of the above NaN values throw in the right callstack (line + col) so backtraces are not nessesary
  • Function suggestions fails ("noReplyWait should throw")
    • Typescript can help users better understand the right function names
  • Suggesting optional arguments available options fails ("run should throw on an unrecognized argument")
    • still showing wrong argument exception + backtrace
    • Typescript can help users better understand the right params
  • Not supporting certain top-level functions ("r.wait should throw")
    • Every not top level function can be translated to top level function by adding the query-term as the first arg: r.table('test').reconfigure({...}) -> r.reconfigure(r.table('test'), { ... })
    • This support will help make use of the future |> functional operator:
      • this.table('test') |> r.reconfigure(#, {})
  • Throw special error if a top-level function is not defined on a term ("js is not defined after a term")
    • Throwing the standard TypeError: xxx is not a function
  • Supporting .asyncIterator()
    • Cursor is a stream reader which is an async iterator by default in node 10
  • Special r.time arity check (the current check is enough)
  • Error message mismatch
  • r.and() r.or() with no arguments