1.0.13 • Published 7 years ago

loopback-connector-rethinkdb v1.0.13

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

loopback-connector-rethinkdb

Loopback connector for RethinkDB.

Installation

In your application root directory, enter this command to install the connector:

npm install loopback-connector-rethinkdb --save

This installs the module from npm and adds it as a dependency to the application's package.json file.

Creating a RethinkDB data source

Add an entry in the application's /server/datasources.json :

"mydb": {
  "url":  "http://username:password@host.com:28015/dbName"
  "connector": "rethinkdb"  
}

Edit datasources.json to add any other additional properties that you require.

Connection properties

PropertyType  Description
connectorStringConnector name, “loopback-connector-rethinkdb”
urlStringFull connection url. Overrides other connection settings
databaseStringDatabase name
hostStringDatabase host name
passwordStringPassword to connect to database
portNumberDatabase TCP port
usernameStringUsername to connect to database

Additional properties

You can specify an 'additionalSettings' property:

"additionalSettings": {
  "ssl": {
    "ca": "${RETHINKDB_SSL}"
  }
}

RETHINKDB_SSL contains the base64encoded SSL cert.

Changefeed

The connector has support for RethinkDB changefeeds. You can access to the functionality by doing:

ModelName.dataSource.connector.changeFeed(Model.modelName, filter, options);

The filter parameter is the standard loopback filtering object. The options parameter can have a throttle property, specified in milliseconds. Disabled by default.

PS: If a change happens, the changefeed function will return the entire results set. Delta results are on the roadmap

1.0.13

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago