knex-aurora-data-api-client

1.10.0 • Public • Published

knex-aurora-data-api-client

Knex Aurora Data API Client

npm npm

This is a fork of the knex-data-api-client by @alan-cooney to support both Postgres and Mysql

The Knex Aurora Data API Client is a Knex extension that supports the RDS Data API, built using Jeremy Daily's excellent data-api-client module.

Support for transactions, and nestTables is included.

Configuration

The library uses the default AWS credentials to connect to the RDS database using the data-api. The data-api-client that this library is a using provides more documentation on the permissions required and how to enable the data-api for the database.

Use

To use aurora in mysql mode:

const knexDataApiClient = require('knex-aurora-data-api-client');
const knex = require('knex')({
  client: knexDataApiClient.mysql,
  connection: {
    secretArn: 'secret-arn', // Required
    resourceArn: 'db-resource-arn', // Required
    database: 'db-name',
    region: 'eu-west-2',
  },
});

To use aurora in postgres mode:

const knexDataApiClient = require('knex-aurora-data-api-client');
const knex = require('knex')({
  client: knexDataApiClient.postgres,
  connection: {
    secretArn: 'secret-arn', // Required
    resourceArn: 'db-resource-arn', // Required
    database: 'db-name',
    region: 'eu-west-2',
  },
});

Nested tables support

Note - this significantly increases the data required back from the RDS data api.

knex().doSomething().options({ nestTables: true });

Credits

Forked from Skyhook knex-data-api-client and provided under an MIT license.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.10.01,879latest

Version History

VersionDownloads (Last 7 Days)Published
1.10.01,879
1.9.063
1.8.07
1.7.00
1.6.50
1.6.42
1.6.30
1.6.214
1.6.10
1.6.00
1.5.50
1.5.40
1.5.30
1.5.231
1.5.10
1.5.00
1.4.30
1.4.20
1.4.10
1.4.00
1.3.00
1.2.60
1.2.50
1.2.40
1.2.30
1.2.20
1.2.10
1.2.00
1.1.30
1.1.20
1.1.10
1.1.00
1.0.30
1.0.20
1.0.10
1.0.00

Package Sidebar

Install

npm i knex-aurora-data-api-client

Weekly Downloads

1,996

Version

1.10.0

License

MIT

Unpacked Size

16.7 kB

Total Files

12

Last publish

Collaborators

  • markusahlstrand