Skip to content

Commit 6f8e86c

Browse files
committed
Update module name to include mysql
1 parent 5b81df8 commit 6f8e86c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ First, create an Aurora Serverless Database. Make sure you can execute queries a
2525
Next install the module:
2626

2727
```bash
28-
$ npm install --save knex knex-aurora-data-api
28+
$ npm install --save knex knex-aurora-data-api-mysql
2929
```
3030

3131
Then simply provide this module as the client, supply the database name, and specify the AWS resource identifiers and credentials to connect to your Aurora Serverless cluster:
3232

3333
```js
3434
const knex = require('knex')({
35-
client: require('knex-aurora-data-api'),
35+
client: require('knex-aurora-data-api-mysql'),
3636
connection: {
3737
database: '<Database Name>', // e.g. 'project'
3838
resourceArn: '<Aurora Serverless Cluster ARN>', // e.g. 'arn:aws:rds:us-west-2:012345678901:cluster:mydbcluster'

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "knex-aurora-data-mysql",
2+
"name": "knex-aurora-data-api-mysql",
33
"version": "0.0.1",
4-
"description": "Knex.js client for AWS Aurora MySQL Data API",
4+
"description": "Knex.js driver for MySQL AWS Aurora Data API",
55
"main": "index.js",
66
"scripts": {
77
"test": "jest tests"

0 commit comments

Comments
 (0)