How to use the rethinkdb-ts.r.connect function in rethinkdb-ts

To help you get started, we’ve selected a few rethinkdb-ts examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github rethinkdb / rethinkdb-desktop / app / main / db / driver.js View on Github external
connect: async function (config = {}) {
    if (connection) {
      console.info('there is an active connection - closing current connection')
      await driver.disconnect()
      console.info('closed')
    }
    console.info('new connection request')
    connection = await r.connect(config)
    console.info('connected')
    return connection
  },
  async disconnect () {

rethinkdb-ts

RethinkDB TypeScript driver

Apache-2.0
Latest version published 6 months ago

Package Health Score

70 / 100
Full package analysis

Similar packages